/* CSS Variables for Easy Color Customization */
:root {
    --hero-text-color: #ffffff;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #ffffff;
    --hero-date-color: #ffffff;
    --hero-location-color: #ffffff;
    --countdown-text-color: #ffffff;
    --countdown-number-color: #ffffff;
    
    /* General website colors */
    --section-title-color: #1a365d;
    --heading-color: #2c3e50;
    --subheading-color: #8b2635;
    --body-text-color: #555;
    --light-text-color: #666;
    --accent-color: #d4af37;
    
    /* Event Details - Edit these in one place! */
    --friday-date: "17 July 2026";
    --friday-day: "Friday";
    --friday-time: "7:00 PM";
    --friday-location: "Terrazza Olmo • Lake Como";
    --friday-dress: "Smart Casual";
    --friday-description: "Italian Aperitivo for best men, bridesmaids, and family with Italian maiolica styling.";
    
    --wedding-date: "18 July 2026";
    --wedding-day: "Saturday";
    --wedding-ceremony-time: "2:00 PM";
    --wedding-ceremony-location: "Chiesa di San Vincenzo • Cernobbio";
    --wedding-reception-time: "4:00 PM";
    --wedding-reception-location: "Villa Erba • Lake Como";
    --wedding-dress: "Elegant Formal";
    --wedding-ceremony-description: "Our religious ceremony in the beautiful historic church, followed by a walk to Villa Erba for the reception.";
    --wedding-reception-description: "Our celebration continues with dinner and dancing under the stars at Villa Erba.";
    
    --pool-date: "20 July 2026";
    --pool-day: "Sunday";
    --pool-time: "12:00 PM";
    --pool-location: "Via Rossini 2 • Carnago";
    --pool-dress: "Hawaiian Theme";
    --pool-description: "Pool party with Hawaiian theme at my parents' place to celebrate our special weekend.";
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--section-title-color);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8b2635;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Adjust navbar position when wedding party notice is present */
body:has(.wedding-party-notice) .navbar,
body.has-wedding-party-notice .navbar {
    top: 60px; /* Push navbar below the wedding party notice */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu a::after {
    display: none; /* Remove underline effect */
}

.nav-menu a:hover::after {
    display: none; /* Remove hover underline */
}

.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
    cursor: pointer;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu .dropdown > a::after {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.nav-menu .dropdown-menu a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.nav-menu .dropdown-menu .event-icon {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.nav-menu .dropdown-menu a.active {
    color: #8b2635;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
}

/* Mobile responsiveness for dropdown */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-left: 1rem;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 0.5rem 1rem;
        color: #ffffff;
        border-left: none;
    }
    
    .nav-menu .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #d4af37;
        transform: none;
    }
    
    .nav-menu .dropdown > a::after {
        display: none;
    }
}

/* Event Detail Classes - These automatically display the values from CSS variables */
.event-date-display::before {
    content: var(--event-date, "Date");
}

.event-day-display::before {
    content: var(--event-day, "Day");
}

.event-time-display::before {
    content: var(--event-time, "Time");
}

.event-location-display::before {
    content: var(--event-location, "Location");
}

.event-dress-display::before {
    content: var(--event-dress, "Dress Code");
}

.event-description-display::before {
    content: var(--event-description, "Description");
}

/* Friday Event Specific */
.friday-event-page .event-date-display::before {
    content: var(--friday-date);
}

.friday-event-page .event-day-display::before {
    content: var(--friday-day);
}

.friday-event-page .event-time-display::before {
    content: var(--friday-time);
}

.friday-event-page .event-location-display::before {
    content: var(--friday-location);
}

.friday-event-page .event-dress-display::before {
    content: var(--friday-dress);
}

.friday-event-page .event-description-display::before {
    content: var(--friday-description);
}



/* Wedding Day Specific */
.wedding-day-page .event-date-display::before {
    content: var(--wedding-date);
}

.wedding-day-page .event-day-display::before {
    content: var(--wedding-day);
}

.wedding-day-page .event-time-display::before {
    content: var(--wedding-time);
}

.wedding-day-page .event-location-display::before {
    content: var(--wedding-location);
}

.wedding-day-page .event-dress-display::before {
    content: var(--wedding-dress);
}

.wedding-day-page .event-description-display::before {
    content: var(--wedding-description);
}

/* Pool Party Specific */
.pool-party-page .event-date-display::before {
    content: var(--pool-date);
}

.pool-party-page .event-day-display::before {
    content: var(--pool-day);
}

.pool-party-page .event-time-display::before {
    content: var(--pool-time);
}

.pool-party-page .event-location-display::before {
    content: var(--pool-location);
}

.pool-party-page .event-dress-display::before {
    content: var(--pool-dress);
}

.pool-party-page .event-description-display::before {
    content: var(--pool-description);
}

/* Main Page Event Cards - These will show the correct info for each event type */
.main-page .event-card:first-child .event-day-display::before {
    content: var(--friday-day);
}

.main-page .event-card:first-child .event-time-display::before {
    content: var(--friday-time);
}

.main-page .event-card:first-child .event-location-display::before {
    content: var(--friday-location);
}

.main-page .event-card:first-child .event-description-display::before {
    content: var(--friday-description);
}

.main-page .event-card:first-child .event-dress-display::before {
    content: var(--friday-dress);
}

.main-page .event-card.religious-ceremony .event-day-display::before {
    content: var(--wedding-day);
}

.main-page .event-card.religious-ceremony .event-time-display::before {
    content: var(--wedding-ceremony-time);
}

.main-page .event-card.religious-ceremony .event-location-display::before {
    content: var(--wedding-ceremony-location);
}

.main-page .event-card.religious-ceremony .event-description-display::before {
    content: var(--wedding-ceremony-description);
}

.main-page .event-card.religious-ceremony .event-dress-display::before {
    content: var(--wedding-dress);
}

.main-page .event-card.main-event .event-day-display::before {
    content: var(--wedding-day);
}

.main-page .event-card.main-event .event-time-display::before {
    content: var(--wedding-reception-time);
}

.main-page .event-card.main-event .event-location-display::before {
    content: var(--wedding-reception-location);
}

.main-page .event-card.main-event .event-description-display::before {
    content: var(--wedding-reception-description);
}

.main-page .event-card.main-event .event-dress-display::before {
    content: var(--wedding-dress);
}

.main-page .event-card:last-child .event-day-display::before {
    content: var(--pool-day);
}

.main-page .event-card:last-child .event-time-display::before {
    content: var(--pool-time);
}

.main-page .event-card:last-child .event-location-display::before {
    content: var(--pool-location);
}

.main-page .event-card:last-child .event-description-display::before {
    content: var(--pool-description);
}

.main-page .event-card:last-child .event-dress-display::before {
    content: var(--pool-dress);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    height: 110vh; /* Increased from 100vh to 120vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #1a365d;
    color: white;
    --hero-text-color: #ffffff;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #ffffff;
    --hero-date-color: #ffffff;
    --hero-location-color: #ffffff;
    --countdown-text-color: #ffffff;
    --countdown-number-color: #ffffff;
}

/* Main Page Specific Styles */
.main-page .section-title {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

.main-page h3 {
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.main-page h4 {
    color: #8b2635;
    font-weight: 600;
}

.hero.with-image {
    background: none;
}

.hero.with-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.hero.with-image .hero-content {
    z-index: 2;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5), 0 0 20px rgba(0,0,0,0.3);
    color: var(--hero-title-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    color: var(--hero-subtitle-color);
}

.hero-date {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    color: var(--hero-date-color);
}

.date-day {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 1rem;
}

.date-year {
    font-size: 2rem;
    font-weight: 400;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    color: var(--hero-location-color);
}

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--countdown-number-color);
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--countdown-text-color);
}

/* Story Section */
.story {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.placeholder-image {
    background: #8b2635;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.placeholder-image.with-image {
    background: none;
    position: relative;
    overflow: hidden;
}

.placeholder-image.with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: 1;
}

.placeholder-image.with-image .image-overlay {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    text-align: center;
    font-size: 0.7rem;
    max-width: 120px;
}

.placeholder-image.with-image .image-overlay a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.placeholder-image.with-image .image-overlay a:hover {
    color: #d4af37;
}

.placeholder-image.with-image .image-overlay i {
    font-size: 0.8rem;
}

/* Image Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
    width: 100%;
}

.image-grid .placeholder-image.with-image {
    height: 100%;
    min-height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.image-grid .placeholder-image.with-image::before {
    border-radius: 15px;
}

.placeholder-image p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Event Card Background Images */
.event-date.with-background {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

.event-date.with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--card-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.event-date.with-background span {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 1rem;
    border-radius: 0;
    backdrop-filter: blur(5px);
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    border-radius: 20px;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

/* Event Content Padding */
.event-content {
    padding: 2rem;
}

/* Italian Maiolica styling for Friday event */
.event-card:first-child {
    background: white;
    position: relative;
    overflow: hidden;
}

/* Friday Event Hero with Background Image */
.friday-hero {
    background: #8b2635;
    position: relative;
}

/* Friday Event Color Scheme */
.friday-hero {
    --hero-text-color: #ffffff;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #ffffff;
    --hero-date-color: #ffffff;
    --hero-location-color: #ffffff;
    --countdown-text-color: #ffffff;
    --countdown-number-color: #ffffff;
}

/* Friday Event Page Specific Styles */
.friday-event-page .section-title {
    color: #0857b7;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.friday-event-page .event-hero-title {
    color: #0857b7;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.friday-event-page .event-hero-subtitle {
    color: #0857b7;
    font-weight: 600;
}

.friday-event-page h3 {
    color: #0857b7;
    font-family: 'Georgia', serif;
}

.friday-event-page h4 {
    color: #0857b7;
    font-weight: 600;
}

.friday-hero.with-image {
    background: none;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.friday-hero.with-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.friday-hero.with-image .event-hero-content {
    z-index: 2;
    position: relative;
}

.event-card:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.event-card:first-child .event-date {
    background: none;
    box-shadow: none;
}

.event-card:first-child .event-content h3 {
    color: #1a365d;
    position: relative;
}

.event-card:first-child .event-content h3::after {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
}

.event-card:first-child .event-dress {
    color: #1a365d;
    font-weight: 600;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-card.main-event {
    border: 2px solid #8b2635;
    transform: scale(1.05);
}

.event-date {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #8b2635;
    color: white;
    border-radius: 15px;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-month {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 700;
    display: block;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.event-time {
    font-size: 1.1rem;
    color: #8b2635;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-location {
    font-weight: 600;
    color: #555;
    margin-bottom: 1rem;
}

.event-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-dress {
    display: inline-block;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.event-link {
    display: inline-block;
    color: #8b2635;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.event-link:hover {
    color: #1a365d;
    border-bottom-color: #1a365d;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #f8f9fa;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.location-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.location-card.main-location {
    border: 2px solid #8b2635;
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card h4 {
    font-size: 1.3rem;
    color: #8b2635;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}

.location-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.location-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.info-item i {
    margin-right: 1rem;
    color: #8b2635;
    width: 20px;
}

.map-link {
    display: inline-block;
    background: #8b2635;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
}

.accommodation h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.accommodation-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.accommodation-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.accommodation-item ul {
    list-style: none;
}

.accommodation-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.accommodation-item li:last-child {
    border-bottom: none;
}

/* RSVP Section */
.rsvp {
    padding: 100px 0;
    background: white;
}

.rsvp-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b2635;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.rsvp-button {
    width: 100%;
    background: #8b2635;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: inherit;
}

.rsvp-button:hover {
    transform: translateY(-2px);
}

/* Form Labels */
.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.radio-option:hover {
    border-color: #8b2635;
    background-color: #f8f9fa;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #8b2635;
    background-color: #8b2635;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option input[type="radio"]:checked ~ * {
    color: #8b2635;
    font-weight: 600;
}

/* Event Button Styles */
.event-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-button {
    display: block;
    cursor: pointer;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.event-button:hover {
    border-color: #8b2635;
    background-color: #f8f9fa;
}

.event-button input[type="checkbox"] {
    display: none;
}

.event-button input[type="checkbox"]:checked + .event-button-content {
    color: #8b2635;
}

.event-button input[type="checkbox"]:checked + .event-button-content::before {
    content: '✓ ';
    font-weight: bold;
    margin-right: 0.5rem;
    color: #8b2635;
    font-size: 1.2rem;
}

.event-button:has(input[type="checkbox"]:checked) {
    border-color: #8b2635;
    background-color: rgba(139, 38, 53, 0.05);
}

.event-button-content {
    display: block;
}

.event-button-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.event-button-content small {
    color: #666;
    font-size: 0.9rem;
}

.event-button input[type="checkbox"]:checked + .event-button-content strong {
    color: #8b2635;
}

/* Responsive styles for event buttons */

@media (max-width: 768px) {
    .radio-group {
        gap: 0.5rem;
    }
    
    .radio-option {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .event-buttons {
        gap: 0.5rem;
    }
    
    .event-button {
        padding: 0.8rem;
    }
}

/* Thank You Message */
.rsvp-thank-you {
    max-width: 600px;
    margin: 2rem auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.thank-you-content {
    text-align: center;
    background: linear-gradient(135deg, #8b2635, #a83442);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.3);
}

.celebration-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.thank-you-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Individual Event Pages */
.event-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    margin-top: 70px;
}

.friday-hero {
    background: #8b2635;
    color: #0857b7;
}

.wedding-hero {
    background: #1a365d;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.pool-hero {
    background: #d4af37;
    color: #ED8C8C;
    --hero-text-color: #ED8C8C;
    --hero-title-color: #ED8C8C;
    --hero-subtitle-color: #ED8C8C;
    --hero-date-color: #ED8C8C;
    --hero-location-color: #ED8C8C;
    --countdown-text-color: #ED8C8C;
    --countdown-number-color: #ED8C8C;
}

/* Pool Party Page Specific Styles */
.pool-party-page .section-title {
    color: #ED8C8C;
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pool-party-page .event-hero-title {
    color: #ED8C8C;
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.pool-party-page .event-hero-subtitle {
    color: #ED8C8C;
    font-weight: 700;
    font-size: 1.2rem;
}

.pool-party-page h3 {
    color: #ED8C8C;
    font-family: 'Arial', sans-serif;
    font-weight: 800;
}

.pool-party-page h4 {
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pool-hero.with-image {
    background: none;
}

.pool-hero.with-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.pool-hero.with-image .event-hero-content {
    z-index: 2;
    position: relative;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.event-date-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.event-date-badge .event-day {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date-badge .event-month,
.event-date-badge .event-year {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0.5rem;
}

.event-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.event-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.event-day-of-week {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fallback for day display - if pseudo-elements don't work */
.event-day-display::before {
    content: attr(data-day, "Day");
}

.event-hero-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.detail-item i {
    color: #d4af37;
}

.detail-item a {
    color: inherit;
    text-decoration: none;
    display: contents;
}

.detail-item a:hover {
    color: inherit;
    text-decoration: none;
}

.detail-item a:visited {
    color: inherit;
}

/* Event Details Section */
.event-details {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.details-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.details-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b2635;
    margin: 2rem 0 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.expectations-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expectations-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.expectations-list li::before {
    content: '🌺';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Sidebar Info Cards */
.details-sidebar {
    position: sticky;
    top: 100px;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.info-card li:last-child {
    border-bottom: none;
}

/* Timeline */
.timeline {
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    font-weight: 600;
    color: #8b2635;
    min-width: 80px;
}

.timeline-item .activity {
    color: #555;
    text-align: right;
}

/* Venue Gallery */
.venue-gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.venue-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-placeholder {
    height: 200px;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 2rem;
}

.gallery-placeholder p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Back to Events */
.back-to-events {
    padding: 50px 0;
    background: white;
    text-align: center;
}

.back-button {
    display: inline-block;
    background: #8b2635;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    transform: translateY(-2px);
}

.back-button i {
    margin-right: 0.5rem;
}

/* Active Navigation */
.nav-menu a.active {
    color: #8b2635;
    font-weight: 600;
}

.nav-menu a.active::after {
    display: none; /* Remove active underline */
}

/* Maiolica Pattern for Friday Event */
.maiolica-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 20px,
        rgba(212, 175, 55, 0.1) 20px,
        rgba(212, 175, 55, 0.1) 40px
    );
    opacity: 0.3;
}

/* Hawaiian Pattern for Pool Party */
.hawaiian-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 25% 25%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 75% 75%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    opacity: 0.4;
}

/* Wedding Pattern */
.wedding-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    opacity: 0.3;
}

/* Accommodations Page */
.accommodation-hero {
    background: #8b2635;
}

.accommodation-hero.with-image {
    background: none;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.accommodation-hero.with-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.accommodation-hero.with-image .event-hero-content {
    z-index: 2;
    position: relative;
}

/* Accommodations Page Specific Styles */
.accommodations-page .section-title {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 3.3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.accommodations-page .accommodation h3 {
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.accommodations-page .accommodation h4 {
    color: #8b2635;
    font-weight: 600;
    font-style: italic;
}

.accommodations-page .category-header h3 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accommodation-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.hero-location-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.location-badge i {
    color: #d4af37;
}

/* Accommodation Categories */
.accommodation-categories {
    padding: 100px 0;
    background: white;
}

.accommodation-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-section {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.category-header.luxury {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a365d;
}

.category-header.mid-range {
    background: linear-gradient(135deg, #8b2635, #c0392b);
    color: white;
}

.category-header.budget {
    background: linear-gradient(135deg, #1a365d, #2c5aa0);
    color: white;
}

.category-header.pool-area {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hotel-card.luxury {
    border: 2px solid #d4af37;
}

.hotel-card.mid-range {
    border: 2px solid #8b2635;
}

.hotel-card.budget {
    border: 2px solid #1a365d;
}

.hotel-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: #666;
    font-size: 3rem;
}

.hotel-content {
    padding: 2rem;
}

.hotel-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.hotel-location {
    color: #8b2635;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-distance {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    border: 1px solid #e9ecef;
}

.hotel-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hotel-website,
.hotel-map {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.hotel-website {
    background: #8b2635;
    color: white;
}

.hotel-map {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.hotel-website:hover,
.hotel-map:hover {
    transform: translateY(-2px);
}

/* Booking Tips */
.booking-tips {
    padding: 100px 0;
    background: #f8f9fa;
}

.booking-tips h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.tip-card i {
    font-size: 2.5rem;
    color: #8b2635;
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #555;
    line-height: 1.6;
}

/* Religious Ceremony Hero */
.religious-hero {
    background: #1a365d;
    --hero-text-color: #ffffff;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #ffffff;
    --hero-date-color: #ffffff;
    --hero-location-color: #ffffff;
    --countdown-text-color: #ffffff;
    --countdown-number-color: #ffffff;
}

/* Religious Ceremony Page Specific Styles */
.religious-ceremony-page .section-title {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.religious-ceremony-page .event-hero-title {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.religious-ceremony-page .event-hero-subtitle {
    color: #d4af37;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.religious-ceremony-page h3 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
}

.religious-ceremony-page h4 {
    color: #8b2635;
    font-weight: 600;
}

.religious-hero.with-image {
    background: none;
}

.religious-hero.with-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.religious-hero.with-image .event-hero-content {
    z-index: 2;
    position: relative;
}

/* Wedding Day Hero with Background Image */
.wedding-hero {
    background: #1a365d;
    position: relative;
    --hero-text-color: #ffffff;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #ffffff;
    --hero-date-color: #ffffff;
    --hero-location-color: #ffffff;
    --countdown-text-color: #ffffff;
    --countdown-number-color: #ffffff;
}

/* Wedding Day Page Specific Styles */
.wedding-day-page .section-title {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.wedding-day-page .event-hero-title {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
}

.wedding-day-page .event-hero-subtitle {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.4rem;
}

.wedding-day-page h3 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.wedding-day-page h4 {
    color: #8b2635;
    font-weight: 600;
    font-style: italic;
}

.wedding-hero.with-image {
    background: none;
}

.wedding-hero.with-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.wedding-hero.with-image .event-hero-content {
    z-index: 2;
    position: relative;
}

/* Church Pattern */
.church-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0.4;
}

/* Religious Ceremony Event Card */
.event-card.religious-ceremony {
    position: relative;
    overflow: hidden;
}

.event-card.religious-ceremony::before {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

/* Walking Route Section */
.walking-route {
    padding: 100px 0;
    background: white;
}

.walking-route h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
}

.route-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.route-map {
    text-align: center;
}

.map-placeholder {
    background: #f8f9fa;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 2rem;
    border: 2px dashed #d4af37;
}

.map-placeholder p {
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.1rem;
    color: #1a365d;
}

.map-placeholder small {
    font-size: 0.9rem;
    color: #8b2635;
}

.route-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b2635;
    margin-bottom: 1rem;
}

.route-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.route-features {
    list-style: none;
    margin: 1.5rem 0;
}

.route-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.route-features li::before {
    content: '🌊';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.route-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.route-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    color: #555;
    border: 1px solid #e9ecef;
}

.route-stat i {
    color: #8b2635;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Event page responsive */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .details-sidebar {
        position: static;
    }
    
    .event-hero-title {
        font-size: 2.5rem;
    }
    
    .event-hero-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .route-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .route-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Accommodations page responsive */
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-location-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .date-day {
        font-size: 3rem;
    }
    
    .date-month,
    .date-year {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Wedding Party Notice */
.wedding-party-notice {
    background: linear-gradient(135deg, #8b2635, #a73747);
    color: white;
    text-align: center;
    padding: 0.8rem 0;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(139, 38, 53, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001; /* Above navbar */
}

.wedding-party-notice i {
    color: #ffd700;
    margin: 0 0.5rem;
}

.wedding-party-notice p {
    margin: 0;
}

/* Adjust hero section when wedding party notice is present */
body:has(.wedding-party-notice) .hero,
body.has-wedding-party-notice .hero {
    padding-top: 140px; /* Account for both notice and navbar */
}

body:has(.wedding-party-notice) .hero.with-image,
body.has-wedding-party-notice .hero.with-image {
    padding-top: 140px;
}

/* Event Note Styling */
.event-note {
    background: linear-gradient(135deg, #8b2635, #a73747);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    margin: 1rem 0;
}

.event-note i {
    color: #ffd700;
    margin-right: 0.5rem;
}
