/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Base body */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1b1b1b;
    background-color: #f5f5f5;
}

/* Hero section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

/* Buttons */
.primary-btn {
    background-color: #bfa046;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sections */
.section {
    padding: 120px 20%;
    text-align: center;
    background: white;
}

.section.dark {
    background: #111;
    color: white;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

form button {
    padding: 12px;
    border: none;
    background-color: #bfa046;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: white;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

/* Header container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
}

/* Header logo (small) */
.header-logo img {
    max-height: 100px; /* small enough to fit nav */
    display: block;
    transition: transform 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.05);
}

/* About section logo (larger, premium) */
.about-logo img {
    max-height: 900px; /* bigger for premium look */
    width: auto;       /* keep original aspect ratio */
    display: block;
    margin: 0 auto 20px auto; /* centers logo above heading */
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-nav a:hover {
    color: #bfa046; /* gold hover */
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        margin-top: 10px;
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* Push content below header */
body > .hero,
body > .section {
    margin-top: 90px; /* matches header height */
}
