/* ===== CSS Custom Properties (Design System) ===== */
:root {
    /* Color Themes */
    --cream-bg: #F5EBDE;
    --dark-green: #2E3C29;
    --green-secondary: #5A7550;
    --gold-accent: #c9a868;
    --white: #FFFFFF;
    --black: #121212;
    --light-grey: #F1F1F1;
    --grey: #6B6B6B;
    --text-light: #f5f5f5;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    
    /* Typography Scale - Consistent sizing */
    --text-xs: 13px;      /* Small labels, captions */
    --text-sm: 15px;      /* Secondary text, form labels */
    --text-base: 17px;    /* Body text, paragraphs */
    --text-lg: 20px;      /* Large body text */
    --text-xl: 24px;      /* Section subtitles */
    --text-2xl: 32px;     /* Medium headings */
    --text-3xl: 42px;     /* Large headings */
    --text-4xl: 56px;     /* Section titles */
    --text-5xl: 72px;     /* Hero secondary */
    --text-6xl: 110px;    /* Hero primary */
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1440px;
    
    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    font-weight: 500;
    font-style: italic;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Apply Playfair Display italic to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--cream-bg);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    background-color: rgba(245, 235, 222, 0.98);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    color: var(--gold-accent);
    font-weight: 400;
    z-index: 1002;
    transition: var(--transition-fast);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: var(--transition-fast);
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: var(--transition-smooth);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    background-color: var(--cream-bg);
    height: 100vh;
    min-height: 600px;
    padding-top: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    align-items: center;
}

.hero-text {
    padding: 80px 80px 80px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: var(--text-6xl);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-date,
.hero-venue {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--gold-accent);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}



.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--dark-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links a {
        font-size: 20px;
        color: var(--text-light);
        letter-spacing: 1px;
        padding: 10px 20px;
    }
    
    .nav-links a:hover {
        color: var(--gold-accent);
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
    }
    
    .hero-text {
        padding: 60px 40px;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-image {
        width: 100%;
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
        line-height: 1;
        margin-bottom: 30px;
    }
    
    .nav {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .hamburger {
        width: 26px;
        height: 19px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    
    .nav-links {
        width: 75%;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .hero {
        padding: 70px 0 0;
        min-height: 90vh;
    }
    
    .hero-content {
        gap: 0;
    }
    
    .hero-text {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
        margin-bottom: 25px;
        letter-spacing: -0.5px;
    }
    
    .hero-date,
    .hero-venue {
        font-size: var(--text-base);
    }
    
    .nav {
        padding: 12px 0;
    }
    
    .nav-logo {
        font-size: 22px;
    }
    
    .hero-image {
        height: 50vh;
        min-height: 350px;
    }
}

/* ===== Intro Quote & Details Section ===== */
.intro-section {
    background-color: var(--dark-green);
    padding: var(--section-padding);
    padding-top: 100px;
    padding-bottom: 100px;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-quote {
    text-align: center;
    margin-bottom: 80px;
}

.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-2xl);
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.quote-text-final {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--text-light);
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 0.3px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-smooth);
}

.detail-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-top-color: rgba(255, 255, 255, 0.18);
}

.detail-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-row:last-child:hover {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.detail-icon {
    color: var(--gold-accent);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.detail-row:hover .detail-icon {
    transform: scale(1.1);
}

.detail-text {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: right;
    margin-left: auto;
}

/* Responsive for Intro Section */
@media (max-width: 768px) {
    .intro-section {
        padding: 60px 20px;
    }
    
    .intro-quote {
        margin-bottom: 50px;
    }
    
    .quote-text {
        font-size: var(--text-lg);
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .quote-text-final {
        font-size: var(--text-base);
    }
    
    .detail-row {
        padding: 20px 15px;
        gap: 15px;
        flex-direction: row;
    }
    
    .detail-icon {
        width: 35px;
        height: 35px;
    }
    
    .detail-icon img {
        width: 35px;
        height: 35px;
    }
    
    .detail-text {
        font-size: var(--text-sm);
        text-align: right;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 50px 15px;
    }
    
    .intro-quote {
        margin-bottom: 40px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .quote-text-final {
        font-size: 16px;
    }
    
    .detail-row {
        padding: 18px 10px;
        gap: 12px;
    }
    
    .detail-icon {
        width: 30px;
        height: 30px;
    }
    
    .detail-icon img {
        width: 30px;
        height: 30px;
    }
    
    .detail-text {
        font-size: 13px;
    }
}

/* ===== The Day Section ===== */
.the-day-section {
    background-color: var(--dark-green);
    padding-bottom: 60px;
}

.section-title-container {
    text-align: center;
    padding: 80px 20px 70px;
    background-color: var(--dark-green);
}

.section-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 0;
}

/* ===== Event Card Component (Reusable) ===== */
.event-card {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: var(--transition-slow);
    z-index: 1;
}

.event-card:hover::before {
    background: rgba(0, 0, 0, 0.25);
}

.event-card-overlay {
    /* Remove overlay - no longer needed */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.event-card-content {
    background-color: rgba(46, 60, 41, 0.96);
    padding: 40px 50px 35px;
    width: 380px;
    text-align: center;
    border-radius: 3px;
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.event-card:hover .event-card-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.event-card-divider {
    width: 60px;
    height: 1px;
    background-color: var(--gold-accent);
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.event-card:hover .event-card-divider {
    width: 80px;
}

.event-icon {
    color: var(--gold-accent);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.event-card:hover .event-icon {
    transform: scale(1.1);
}

.event-card-title {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--gold-accent);
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

.event-card-description {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 300;
}

.event-location-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--gold-accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.event-location-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: var(--transition-smooth);
}

.event-location-link:hover {
    opacity: 0.9;
}

.event-location-link:hover::after {
    width: 100%;
}

/* Responsive for Event Cards */
@media (max-width: 968px) {
    .section-title-container {
        padding: 60px 20px 50px;
    }
    
    .section-title {
        font-size: var(--text-3xl);
        margin-bottom: 30px;
    }
    
    .events-container {
        gap: 40px;
    }
    
    .event-card {
        height: 500px;
    }
    
    .event-card-content {
        padding: 35px 40px 30px;
        width: 85%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .events-container {
        gap: 40px;
    }
    
    .event-card {
        height: 450px;
    }
    
    .event-card-content {
        padding: 30px 35px 25px;
        width: 88%;
        max-width: 350px;
    }
    
    .event-card-title {
        font-size: var(--text-base);
    }
    
    .event-card-description {
        font-size: var(--text-sm);
    }
    
    .event-icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .section-title-container {
        padding: 50px 15px 40px;
    }
    
    .section-title {
        font-size: var(--text-xl);
        margin-bottom: 20px;
    }
    
    .events-container {
        gap: 40px;
    }
    
    .event-card {
        height: 400px;
    }
    
    .event-card-content {
        padding: 25px 30px 20px;
        width: 90%;
    }
    
    .event-card-title {
        font-size: var(--text-base);
    }
    
    .event-card-description {
        font-size: var(--text-sm);
        line-height: 1.5;
    }
    
    .event-icon img {
        width: 35px;
        height: 35px;
    }
    
    .event-card-divider {
        width: 50px;
        margin-bottom: 20px;
    }
}

/* ===== Our Story Section ===== */
.our-story-section {
    background-color: var(--cream-bg);
    padding: 100px 20px 120px;
}

.our-story-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-dark {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 80px;
}

/* Timeline */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
}

.timeline-item {
    text-align: center;
    padding: 0 40px;
}

.timeline-year {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--gold-accent);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.timeline-text {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--black);
    font-weight: 500;
    max-width: 680px;
    margin: 0 auto;
}

.timeline-line {
    width: 1px;
    height: 100px;
    background-color: var(--gold-accent);
    margin: 40px auto;
}

/* Responsive for Our Story */
@media (max-width: 968px) {
    .our-story-section {
        padding: 80px 30px 100px;
    }
    
    .section-title-dark {
        font-size: var(--text-3xl);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 60px 20px 80px;
    }
    
    .section-title-dark {
        font-size: var(--text-2xl);
        margin-bottom: 50px;
    }
    
    .timeline-item {
        padding: 0 15px;
    }
    
    .timeline-year {
        font-size: var(--text-lg);
        margin-bottom: 15px;
    }
    
    .timeline-text {
        font-size: var(--text-base);
        line-height: 1.7;
    }
    
    .timeline-line {
        height: 70px;
        margin: 35px auto;
    }
}

@media (max-width: 480px) {
    .our-story-section {
        padding: 50px 15px 70px;
    }
    
    .section-title-dark {
        font-size: var(--text-xl);
        margin-bottom: 40px;
    }
    
    .timeline-item {
        padding: 0 10px;
    }
    
    .timeline-year {
        font-size: var(--text-base);
        margin-bottom: 12px;
    }
    
    .timeline-text {
        font-size: var(--text-sm);
        line-height: 1.6;
    }
    
    .timeline-line {
        height: 60px;
        margin: 30px auto;
    }
}

/* ===== Where to Stay - Combined Section with Fixed Background ===== */
.where-to-stay-intro {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/images/stay.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.stay-intro-bg {
    display: none;
}

.stay-intro-overlay {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    padding: 100px 20px 120px;
}

.stay-intro-content {
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px 80px;
    width: 100%;
}

.stay-intro-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.stay-intro-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

/* ===== Where to Stay - Details Section (now inside overlay) ===== */
.where-to-stay-section {
    max-width: 700px;
    margin: 0 auto;
}

.stay-intro-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-lg);
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 300;
}

.stay-intro-text-small {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--white);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 500;
    line-height: 1.7;
}

.accommodation-category {
    margin-bottom: 60px;
}

.accommodation-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

.accommodation-list {
    display: flex;
    flex-direction: column;
}

.accommodation-item {
    padding: 12px 20px;
    text-align: center;
}

.accommodation-label {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.accommodation-detail {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--white);
    font-weight: 500;
}

a.accommodation-detail {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

a.accommodation-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: var(--transition-smooth);
}

a.accommodation-detail:hover {
    color: var(--gold-accent);
    cursor: pointer;
}

a.accommodation-detail:hover::after {
    width: 100%;
}

.accommodation-price {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--white);
    font-weight: 500;
}

/* Responsive for Where to Stay */
@media (max-width: 968px) {
    .where-to-stay-intro {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .stay-intro-overlay {
        padding: 80px 20px;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .stay-intro-content {
        padding: 0 20px 60px;
    }
    
    .where-to-stay-section {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .where-to-stay-intro {
        background-size: cover !important;
        background-position: center !important;
        min-height: auto;
    }
    
    .stay-intro-overlay {
        padding: 60px 20px;
        background: rgba(0, 0, 0, 0.65);
        min-height: auto;
    }
    
    .stay-intro-content {
        padding: 0 15px 40px;
    }
    
    .stay-intro-title {
        font-size: var(--text-2xl);
        margin-bottom: 10px;
    }
    
    .stay-intro-subtitle {
        font-size: var(--text-xl);
        margin-bottom: 50px;
    }
    
    .stay-intro-text {
        font-size: var(--text-lg);
        margin-bottom: 10px;
    }
    
    .stay-intro-text-small {
        font-size: var(--text-base);
        margin-bottom: 60px;
    }
    
    .where-to-stay-section {
        max-width: 600px;
    }
    
    .accommodation-category {
        margin-bottom: 50px;
    }
    
    .accommodation-title {
        font-size: var(--text-xl);
        margin-bottom: 25px;
    }
    
    .accommodation-item {
        padding: 12px 15px;
    }
    
    .accommodation-label {
        font-size: var(--text-sm);
    }
    
    .accommodation-detail {
        font-size: var(--text-base);
        line-height: 1.6;
    }
    
    .accommodation-price {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .where-to-stay-intro {
        background-size: cover !important;
        background-position: center !important;
        min-height: auto;
    }
    
    .stay-intro-overlay {
        padding: 50px 15px;
        background: rgba(0, 0, 0, 0.7);
        min-height: auto;
    }
    
    .stay-intro-content {
        padding: 0 10px 30px;
    }
    
    .stay-intro-title {
        font-size: var(--text-xl);
        margin-bottom: 8px;
    }
    
    .stay-intro-subtitle {
        font-size: var(--text-lg);
        margin-bottom: 40px;
    }
    
    .stay-intro-text {
        font-size: var(--text-base);
        margin-bottom: 8px;
    }
    
    .stay-intro-text-small {
        font-size: var(--text-sm);
        margin-bottom: 50px;
        line-height: 1.6;
    }
    
    .where-to-stay-section {
        max-width: 100%;
    }
    
    .accommodation-category {
        margin-bottom: 40px;
    }
    
    .accommodation-title {
        font-size: var(--text-lg);
        margin-bottom: 20px;
    }
    
    .accommodation-item {
        padding: 10px 12px;
    }
    
    .accommodation-label {
        font-size: var(--text-sm);
    }
    
    .accommodation-detail {
        font-size: var(--text-sm);
        line-height: 1.5;
    }
    
    .accommodation-price {
        font-size: var(--text-sm);
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    background-color: var(--cream-bg);
    padding: 100px 20px 120px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--grey);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--black);
    font-weight: 500;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.faq-icon {
    font-size: 24px;
    color: var(--black);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 20px;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    padding: 0 30px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
    opacity: 1;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--grey);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ===== RSVP Section ===== */
.rsvp-section {
    background-color: var(--cream-bg);
    padding: 80px 20px 120px;
}

.rsvp-container {
    max-width: 700px;
    margin: 0 auto;
}

.rsvp-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.rsvp-subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--grey);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
}

.form-group input {
    padding: 14px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background-color: var(--white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--black);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 104, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
    font-size: var(--text-sm);
}

.form-group select {
    padding: 14px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background-color: var(--white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--black);
    border-radius: 3px;
    transition: var(--transition-smooth);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23121212' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 104, 0.1);
}

.form-group select option {
    padding: 10px;
    font-size: var(--text-base);
}

.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--black);
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 8px;
    border-radius: 3px;
}

.radio-option:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold-accent);
}

.rsvp-submit-btn {
    padding: 16px 42px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 20px;
    align-self: flex-start;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-style: normal;
}

.rsvp-submit-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.rsvp-submit-btn:active {
    transform: translateY(0);
}

.rsvp-submit-btn:disabled {
    background-color: var(--grey);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

/* ===== RSVP Thank You Message ===== */
.rsvp-thank-you {
    text-align: center;
    padding: 60px 40px;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-icon img {
    filter: opacity(0.85);
}

.thank-you-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.thank-you-message {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2px;
}

.thank-you-details {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--grey);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('/images/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition-slow);
}

.footer:hover .footer-bg {
    transform: scale(1.05);
}

.footer-overlay {
    position: relative;
    background-color: rgba(46, 60, 41, 0.96);
    padding: 50px 80px;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.footer:hover .footer-overlay {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer:hover .footer-logo {
    transform: scale(1.1);
}

.footer-date {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-names {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 30px;
    transition: var(--transition-smooth);
}

.footer:hover .footer-divider {
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-nav {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: var(--transition-fast);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--gold-accent);
}

.footer-nav a:hover::after {
    width: 100%;
}

/* ===== Responsive for FAQ, RSVP, Footer ===== */
@media (max-width: 968px) {
    .faq-section,
    .rsvp-section {
        padding: 80px 30px 100px;
    }
    
    .section-title-dark {
        font-size: var(--text-3xl);
    }
    
    .rsvp-title {
        font-size: var(--text-2xl);
    }
    
    .footer {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
    }
    
    .footer-overlay {
        padding: 50px 60px;
        width: 88%;
    }
}

@media (max-width: 768px) {
    .faq-section,
    .rsvp-section {
        padding: 60px 20px 80px;
    }
    
    .section-title-dark {
        font-size: var(--text-2xl);
        margin-bottom: 50px;
    }
    
    .faq-subtitle {
        font-size: var(--text-sm);
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: var(--text-sm);
    }
    
    .faq-icon {
        font-size: 22px;
        margin-left: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 18px;
    }
    
    .faq-answer p {
        font-size: var(--text-sm);
    }
    
    .rsvp-title {
        font-size: var(--text-xl);
        line-height: 1.2;
    }
    
    .rsvp-subtitle {
        font-size: var(--text-sm);
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rsvp-submit-btn {
        width: 100%;
        align-self: stretch;
        padding: 16px 40px;
    }
    
    .footer {
        height: auto;
        min-height: 450px;
        padding: 50px 0;
    }
    
    .footer-overlay {
        padding: 45px 40px;
        width: 90%;
    }
    
    .footer-names {
        font-size: var(--text-2xl);
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section,
    .rsvp-section {
        padding: 50px 15px 70px;
    }
    
    .section-title-dark {
        font-size: var(--text-xl);
        margin-bottom: 40px;
    }
    
    .faq-subtitle {
        font-size: var(--text-xs);
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 16px 12px;
        font-size: var(--text-xs);
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 10px;
    }
    
    .faq-answer {
        padding: 0 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 12px 16px;
    }
    
    .faq-answer p {
        font-size: var(--text-xs);
        line-height: 1.6;
    }
    
    .rsvp-title {
        font-size: var(--text-lg);
        margin-bottom: 12px;
    }
    
    .rsvp-subtitle {
        font-size: var(--text-xs);
        margin-bottom: 35px;
    }
    
    .rsvp-form {
        gap: 20px;
    }
    
    .form-row {
        gap: 18px;
    }
    
    .form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .form-group input {
        padding: 11px 13px;
        font-size: var(--text-sm);
    }
    
    .form-radio-group {
        gap: 12px;
    }
    
    .radio-option {
        font-size: var(--text-sm);
    }
    
    .radio-option input[type="radio"] {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }
    
    .rsvp-submit-btn {
        padding: 14px 30px;
        font-size: var(--text-xs);
        margin-top: 15px;
    }
    
    .thank-you-icon img {
        width: 60px;
        height: 60px;
    }
    
    .thank-you-title {
        font-size: var(--text-xl);
    }
    
    .thank-you-message {
        font-size: var(--text-base);
    }
    
    .thank-you-details {
        font-size: var(--text-sm);
    }
    
    .footer {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
    }
    
    .footer-overlay {
        padding: 40px 25px;
        width: 92%;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .footer-date {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .footer-names {
        font-size: var(--text-xl);
        margin-bottom: 25px;
    }
    
    .footer-divider {
        margin-bottom: 25px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-nav a {
        font-size: var(--text-sm);
    }
}

/* ===== Additional Mobile Optimizations ===== */

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .nav-links a,
    .faq-question,
    .rsvp-submit-btn,
    .event-location-link,
    .footer-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile hero */
    .hero {
        min-height: 80vh;
    }
}

/* Better focus states for accessibility */
@media (max-width: 768px) {
    .nav-links a:focus,
    .faq-question:focus,
    .rsvp-submit-btn:focus,
    .form-group input:focus,
    .radio-option input:focus {
        outline: 2px solid var(--gold-accent);
        outline-offset: 2px;
    }
}

/* Improve button touch experience */
.rsvp-submit-btn,
.faq-question {
    -webkit-tap-highlight-color: rgba(201, 168, 104, 0.1);
}

/* Extra small devices */
@media (max-width: 375px) {
    .nav-logo {
        font-size: 20px;
    }
    
    .nav-links a {
        font-size: var(--text-base);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        letter-spacing: -0.5px;
    }
    
    .hero-date,
    .hero-venue {
        font-size: var(--text-sm);
    }
    
    .hero-text {
        padding: 30px 15px;
    }
    
    .quote-text {
        font-size: var(--text-base);
    }
    
    .quote-text-final {
        font-size: var(--text-sm);
    }
    
    .section-title {
        font-size: var(--text-xl);
    }
    
    .section-title-dark {
        font-size: var(--text-xl);
    }
    
    .rsvp-title {
        font-size: var(--text-lg);
    }
    
    .footer-names {
        font-size: var(--text-lg);
    }
}

/* Landscape orientation optimizations */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        padding: 40px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-image {
        height: 100vh;
        min-height: 500px;
    }
    
    .event-card {
        height: 380px;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-container,
    .hero-content,
    .intro-container,
    .our-story-container,
    .stay-container,
    .faq-container,
    .rsvp-container {
        max-width: 100%;
    }
}

/* Better line-height for readability on mobile */
@media (max-width: 480px) {
    .quote-text,
    .timeline-text,
    .stay-intro-text-small,
    .faq-answer p {
        line-height: 1.6;
    }
}

/* Add subtle animations for images */
@media (prefers-reduced-motion: no-preference) {
    .detail-icon img,
    .event-icon img,
    .footer-logo img,
    .thank-you-icon img {
        transition: var(--transition-smooth);
    }
    
    .detail-row:hover .detail-icon img,
    .event-card:hover .event-icon img {
        transform: rotate(5deg) scale(1.1);
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced section titles */
.section-title,
.section-title-dark {
    letter-spacing: -0.3px;
}

/* Better text rendering on all browsers */
body,
input,
select,
button,
textarea {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure form elements inherit body font */
input,
select,
button,
textarea {
    font-family: var(--font-sans);
    font-weight: 500;
    font-style: italic;
}
