/* Color Palette */
:root {
    --primary-tan: #e6ac84;
    --primary-rose: #d68e91;
    --primary-blue: #3e4d89;
    --primary-sage: #767c68;
    --text-dark: #2c2c2c;
    --text-light: #f5f5f5;
    --white: #ffffff;
    --bg-light: #fafafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1440px) {
    .hero {
        height: 800px;
    }
}

@media (min-width: 1920px) {
    .hero {
        height: 900px;
    }
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.about p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.venue-info {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Details Section */
.details {
    display: none;
}

/* Contact Section */
.contact {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about h2,
    .details h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .about-content {
        padding: 0 1rem;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .details-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .hero {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .about,
    .details,
    .contact {
        padding: 3rem 0;
    }

    .cta-button {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
    }
}
