:root {
    --primary-color: #D2691E; /* Warm orange-brown */
    --secondary-color: #8B4513; /* Saddle brown */
    --accent-color: #FF8C00; /* Dark orange */
    --warm-cream: #FFF8DC; /* Cornsilk */
    --warm-beige: #F5DEB3; /* Wheat */
    --text-dark: #2C1810; /* Dark brown */
    --text-medium: #5D4037; /* Medium brown */
    --text-light: #8D6E63; /* Light brown */
    --white: #FFFFFF;
    --shadow: rgba(139, 69, 19, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 220, 0.90);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 1px 10px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile-first: hide menu, show hamburger button */
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Base nav menu hidden on mobile */
.nav-menu {
    display: none;
    list-style: none;
    gap: 1.2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-beige) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 40px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--warm-beige);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Meetings Section */
.meetings-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.meeting-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow);
}

.meeting-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.meeting-card p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.meeting-card strong {
    color: var(--text-dark);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.social-link:hover {
    text-decoration: underline;
}


/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--warm-cream);
    text-align: center;
    padding: 4rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */

/* Desktop and large screens: show full menu, hide hamburger */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 1.2rem;
    }
}

/* Mobile: dropdown behavior */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0.5rem;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
        white-space: nowrap;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meetings-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .meetings-info {
        grid-template-columns: 1fr;
    }
}
