:root {
    --primary-red: #b22234;
    --dark-red: #a03333;
    --gold: #d4af37;
    --light-gold: #f4e4bc;
    --forest-green: #228b22;
    --dark-green: #557355;
    --cream: #fffef9;
    --warm-white: #faf8f3;
    --text-dark: #2c2416;
    --text-light: #6b5d4d;
    --snow: #f0f4f8;

    /* RGB channels for rgba() usage in gradients */
    --dark-red-rgb: 160, 51, 51;
    --primary-red-rgb: 178, 34, 52;
    --forest-green-rgb: 34, 139, 34;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--cream);
    overflow-x: hidden;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--light-gold);
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Responsive nav hiding – desktop only (hamburger menu stays untouched) */
@media (min-width: 769px) and (max-width: 1140px) {
    #mainNav li:nth-child(6) { display: none; } /* Die Windegg */
}
@media (min-width: 769px) and (max-width: 990px) {
    #mainNav li:nth-child(7) { display: none; } /* Kontakt */
}
@media (min-width: 769px) and (max-width: 920px) {
    #mainNav li:nth-child(2) { display: none; } /* Über uns */
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(var(--dark-red-rgb), 0.85) 0%, rgba(var(--primary-red-rgb), 0.75) 50%, rgba(var(--forest-green-rgb), 0.65) 100%),
                url('img/hero-background.webp') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    padding: 120px 30px 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-red);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-gold);
    margin-bottom: 35px;
    font-style: italic;
}

.hero-date {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--cream);
}

.hero-date strong {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.6rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-red);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212,175,55,0.4);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212,175,55,0.6);
    background: #e5c04b;
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--dark-red);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gold);
    font-size: 2rem;
}

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

/* Snow effect */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to { transform: translateY(100vh) rotate(360deg); }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 30px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-red);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 25px auto 0;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(var(--dark-red-rgb), 0.85), transparent);
    padding: 30px;
    color: white;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.organizer-card {
    background: white;
    padding: 28px;
    border-radius: 15px;
    margin-top: 25px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.organizer-card h4 {
    color: var(--dark-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.organizer-card p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.organizer-card strong {
    color: var(--primary-red);
}

/* ===== PROGRAMM SECTION ===== */
.programm-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--snow) 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--gold), var(--forest-green));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 45px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-content {
    background: white;
    padding: 28px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.timeline-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.timeline-icon {
    position: absolute;
    right: -58px;
    top: 25px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -58px;
    right: auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.highlight-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: block;
}

.highlight-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-red);
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: var(--dark-green);
    color: white;
}

.location-section .section-title {
    color: var(--gold);
}

.location-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 22px;
}

.location-info p {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

.address-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    border-left: 4px solid var(--gold);
}

.address-box strong {
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.map-placeholder {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://api.mapbox.com/styles/v1/mapbox/light-v11/static/9.7444,47.3891,14,0/800x450?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw') center/cover no-repeat;
}

.map-overlay {
    background: rgba(26,92,26,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
}

.map-overlay .map-icon {
    font-size: 4rem;
    margin-bottom: 18px;
}

.map-overlay p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ===== PARKING SECTION ===== */
.parking-section {
    background: var(--warm-white);
}

.parking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.parking-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-red);
    transition: all 0.3s ease;
}

.parking-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.parking-card h4 {
    color: var(--dark-red);
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.parking-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 28px;
    margin-top: 45px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.warning-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.warning-box p {
    color: #856404;
    line-height: 1.7;
}

/* ===== AUSSTELLER SECTION ===== */
.aussteller-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
}

.aussteller-section .section-title {
    color: var(--gold);
}

.aussteller-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.aussteller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.aussteller-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.aussteller-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-8px);
}

.aussteller-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    color: var(--gold);
}

.aussteller-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.aussteller-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.price-highlight {
    background: var(--gold);
    color: var(--dark-red);
    padding: 25px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.price-highlight span {
    font-size: 2.5rem;
    display: block;
    margin-top: 8px;
}

/* ===== WINDEGG HISTORY SECTION ===== */
.windegg-section {
    background: var(--cream);
}

.windegg-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.windegg-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 20px;
}

.windegg-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.buildings-list {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    margin-top: 25px;
}

.buildings-list h4 {
    color: var(--dark-red);
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.building-item {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.building-icon {
    color: var(--gold);
    font-size: 1.3rem;
}

.windegg-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 200px;
}

.gallery-img:first-child {
    grid-column: 1 / -1;
    height: 280px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-img:hover img {
    transform: scale(1.08);
}

/* ===== PARTNER SECTION ===== */
.partner-section {
    background: var(--snow);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.partner-logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.partner-card h4 {
    color: var(--dark-red);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.partner-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
    color: white;
}

.contact-section .section-title {
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.98rem;
}

.contact-details a:hover {
    color: var(--gold);
}

p#contactSubtitle {
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

.form-submit {
    width: 100%;
    background: var(--primary-red);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178,34,52,0.4);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 30px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 18px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-red);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.88rem;
}

#dayTitle1, #dayTitle2{
        text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-grid,
    .location-grid,
    .windegg-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-red);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    section {
        padding: 70px 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
    }
    
    .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: -62px;
        right: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    #dayTitle1, #dayTitle2{
        text-align: left;
    }  
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== CONTACT OVERLAY ===== */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.contact-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.contact-overlay-modal {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 680px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    z-index: 1;
    animation: overlaySlideIn 0.3s ease;
}

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

.contact-overlay-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    z-index: 2;
}

.contact-overlay-close:hover {
    color: var(--primary-red);
}

.contact-overlay-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 8px;
}

.contact-overlay-subtitle {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1rem;
}

.contact-overlay-success {
    text-align: center;
    padding: 30px 20px;
}

.contact-overlay-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--forest-green);
    margin: 15px 0 10px;
}

.contact-overlay-success p {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.overlay-form-row-three {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 16px;
}

.overlay-radio-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.overlay-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 4px;
}

.overlay-radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
}

.overlay-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
}

.overlay-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.overlay-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
    flex-shrink: 0;
}

.contact-overlay-modal .g-recaptcha {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .contact-overlay-modal {
        padding: 25px 20px;
        width: 96%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .overlay-form-row,
    .overlay-form-row-three {
        grid-template-columns: 1fr;
    }

    .contact-overlay-title {
        font-size: 1.5rem;
    }
}




/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 50%, #8b1a2b 100%);
    color: white;
    text-align: center;
}
.countdown-section .section-title { color: var(--gold); }
.countdown-section .section-subtitle { color: rgba(255,255,255,0.85); }
.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}
.countdown-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 120px;
    text-align: center;
}
.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    display: block;
}
.countdown-separator {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}
.countdown-target {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-top: 15px;
}

/* ===== PHOTO GALLERY SECTION ===== */
.gallery-section {
    background: var(--warm-white);
}
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.photo-gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    cursor: pointer;
}
.photo-gallery-large {
    grid-column: span 2;
    height: 300px;
}
.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.photo-gallery-item:hover img {
    transform: scale(1.1);
}
.photo-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px 15px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.photo-gallery-item:hover .photo-gallery-caption {
    opacity: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--snow);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #eee;
}
.faq-question {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
    content: '−';
}
.faq-item[open] .faq-question {
    background: var(--primary-red);
    color: white;
}
.faq-answer {
    padding: 20px 28px;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 2px solid var(--gold);
}
.faq-answer p { margin-bottom: 10px; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}
.newsletter-section .section-title { color: var(--gold); }
.newsletter-section .section-subtitle { color: rgba(255,255,255,0.85); }
.newsletter-form {
    max-width: 550px;
    margin: 0 auto;
}
.newsletter-input-group {
    display: flex;
    gap: 10px;
}
.newsletter-input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}
.newsletter-btn {
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

/* ===== SHARE SECTION ===== */
.share-section {
    background: var(--cream);
    text-align: center;
}
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.share-whatsapp { background: #25d366; color: white; }
.share-whatsapp:hover { background: #1da851; }
.share-facebook { background: #1877f2; color: white; }
.share-facebook:hover { background: #0d5bbd; }
.share-twitter { background: #1da1f2; color: white; }
.share-twitter:hover { background: #0c85d0; }
.share-email { background: var(--primary-red); color: white; }
.share-email:hover { background: var(--dark-red); }

/* ===== RESPONSIVE NEW SECTIONS ===== */
@media (max-width: 768px) {
    .countdown-grid { gap: 8px; }
    .countdown-item { min-width: 70px; padding: 15px 10px; }
    .countdown-number { font-size: 2rem; }
    .countdown-separator { font-size: 1.8rem; }
    .photo-gallery-grid { grid-template-columns: 1fr; }
    .photo-gallery-large { grid-column: span 1; }
    .photo-gallery-item { height: 200px; }
    .newsletter-input-group { flex-direction: column; }
    .share-buttons { gap: 10px; }
    .share-btn { padding: 12px 20px; font-size: 0.85rem; }
    .contact-grid { grid-template-columns: 1fr; }
}
