/* ===================================
   Wedding Homepage Styles
   Viktoriya & Tomek - 17.04.2026
   =================================== */

/* Color Palette from the provided image */
:root {
    /* Main Colors */
    --cream: #F5EDE4;
    --peach: #F5C7A9;
    --coral: #C27B5C;
    --latte: #D4A574;
    --rain: #B8C5B9;
    --eucalyptus: #8B9A7D;

    /* Extended palette */
    --cream-light: #FAF7F3;
    --cream-dark: #E8DED2;
    --coral-dark: #A65F42;
    --eucalyptus-dark: #6B7A60;
    --text-dark: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;

    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--coral);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-dark);
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Language Toggle
   =================================== */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--coral);
}

.lang-btn.active {
    color: var(--white);
    background: var(--coral);
}

.lang-divider {
    color: var(--cream-dark);
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-medium);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

.main-nav.scrolled .nav-logo {
    color: var(--coral);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.main-nav.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.main-nav.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 154, 125, 0.85) 0%, rgba(184, 197, 185, 0.8) 50%, rgba(245, 199, 169, 0.75) 100%),
                url('images/image4.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    animation: floatBg 60s linear infinite;
}

@keyframes floatBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-title .name {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title .ampersand {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--peach);
    font-style: italic;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.date-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.date-divider {
    width: 2px;
    height: 60px;
    background: var(--peach);
    opacity: 0.8;
}

.date-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--white);
    line-height: 1.3;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-location i {
    color: var(--peach);
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--coral);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    opacity: 0.7;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.6s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.8s; }
.animate-fade-up:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Countdown Section
   =================================== */
.countdown-section {
    padding: 60px 0;
    background: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--coral);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 10px;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
}

.title-decoration {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--peach), var(--coral), var(--peach));
    margin: 0 auto 20px;
    position: relative;
}

.title-decoration::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--coral);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title-decoration.small {
    width: 50px;
}

.title-decoration.small::before {
    width: 6px;
    height: 6px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    bottom: 40px;
    border: 2px solid var(--coral);
    opacity: 0.5;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 0;
    bottom: 0;
    background: var(--peach);
    opacity: 0.3;
    z-index: -1;
}

.placeholder-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--rain) 0%, var(--eucalyptus) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.placeholder-image.couple-photo {
    aspect-ratio: 4/5;
}

img.couple-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-intro {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--coral);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ===================================
   Schedule/Timeline Section
   =================================== */
.schedule-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--peach), var(--coral), var(--eucalyptus));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--coral);
    border-radius: 50%;
    top: 5px;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--coral);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

.timeline-content {
    background: var(--cream-light);
    padding: 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-time {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--coral);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
}

.timeline-icon {
    position: absolute;
    bottom: 15px;
    opacity: 0.15;
    font-size: 2rem;
    color: var(--coral);
}

.timeline-item:nth-child(odd) .timeline-icon {
    left: 15px;
}

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

/* ===================================
   Locations Section
   =================================== */
.locations-section {
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--peach), var(--coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.location-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--coral);
}

.location-time {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--eucalyptus-dark);
    margin-bottom: 20px;
}

.location-address {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--cream-dark);
}

.location-address p {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.location-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.info-item i {
    color: var(--coral);
    margin-top: 3px;
    flex-shrink: 0;
}

.location-transport {
    margin-bottom: 25px;
}

.location-transport h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transport-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--cream-light);
    border-radius: 10px;
}

.transport-item i {
    font-size: 1.25rem;
    color: var(--eucalyptus);
    margin-top: 3px;
}

.transport-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.transport-item p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.transport-item.shuttle {
    background: linear-gradient(135deg, var(--peach) 0%, var(--coral) 100%);
}

.transport-item.shuttle i,
.transport-item.shuttle strong,
.transport-item.shuttle p {
    color: var(--white);
}

.location-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--coral);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-medium);
    margin-bottom: 20px;
}

.location-map-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
}

/* Taxi Info */
.taxi-info {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.taxi-info > i {
    font-size: 2.5rem;
    color: var(--latte);
}

.taxi-info h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.taxi-info p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.taxi-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--coral);
    font-weight: 500;
}

.taxi-number:hover {
    color: var(--coral-dark);
}

/* ===================================
   Info Section
   =================================== */
.info-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--cream-light);
    padding: 35px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rain), var(--eucalyptus));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--coral);
}

.info-card p {
    font-size: 0.95rem;
}

.info-icon-small {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--eucalyptus);
    opacity: 0.15;
}

/* Color Swatches */
.color-palette-hint {
    margin-top: 20px;
}

.color-palette-hint span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.color-swatches {
    display: flex;
    gap: 8px;
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.swatch:hover {
    transform: scale(1.2);
}

.swatch.cream { background: var(--cream); }
.swatch.peach { background: var(--peach); }
.swatch.coral { background: var(--coral); }
.swatch.latte { background: var(--latte); }
.swatch.rain { background: var(--rain); }
.swatch.eucalyptus { background: var(--eucalyptus); }

.dresscode-note {
    margin-top: 8px;
    font-style: italic;
    color: var(--coral);
}

/* Gift Card */
.gift-card {
    grid-column: span 2;
    text-align: center;
    background: linear-gradient(135deg, var(--peach) 0%, var(--coral) 100%);
}

.gift-card .info-card-icon {
    background: var(--white);
    margin: 0 auto 20px;
}

.gift-card .info-card-icon i {
    color: var(--coral);
}

.gift-card h3,
.gift-card p {
    color: var(--white);
}

.paypal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--white);
    color: #003087;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.paypal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
}

.paypal-btn i {
    font-size: 1.3rem;
    color: #003087;
}

/* Contact Persons */
.contact-persons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-person {
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.contact-info {
    flex: 1;
}

.contact-person strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-person .languages {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-person a {
    display: block;
    color: var(--coral);
    font-weight: 500;
    margin-top: 5px;
}

.contact-person a:hover {
    color: var(--coral-dark);
}

.contact-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--eucalyptus);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .contact-photo {
        width: 55px;
        height: 55px;
    }
}

/* ===================================
   Accommodation Section
   =================================== */
.accommodation-section {
    padding-top: 60px;
    border-top: 1px solid var(--cream-dark);
}

.accommodation-section .section-header {
    margin-bottom: 30px;
}

.accommodation-section h3 {
    font-size: 1.75rem;
    color: var(--coral);
}

.accommodation-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hotel-card {
    background: var(--cream-light);
    padding: 30px;
    border-radius: 15px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hotel-icon {
    width: 50px;
    height: 50px;
    background: var(--latte);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hotel-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.hotel-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hotel-details {
    margin-bottom: 20px;
}

.hotel-details p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hotel-details i {
    color: var(--eucalyptus);
    margin-top: 3px;
    width: 16px;
}

.hotel-details a {
    color: var(--coral);
}

.hotel-details a:hover {
    color: var(--coral-dark);
}

.hotel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--eucalyptus);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-medium);
}

.hotel-link:hover {
    background: var(--eucalyptus-dark);
    transform: translateY(-2px);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item .placeholder-image {
    aspect-ratio: 1;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item:nth-child(1) .placeholder-image { background: linear-gradient(135deg, var(--peach), var(--coral)); }
.gallery-item:nth-child(2) .placeholder-image { background: linear-gradient(135deg, var(--rain), var(--eucalyptus)); }
.gallery-item:nth-child(3) .placeholder-image { background: linear-gradient(135deg, var(--latte), var(--peach)); }
.gallery-item:nth-child(4) .placeholder-image { background: linear-gradient(135deg, var(--eucalyptus), var(--rain)); }
.gallery-item:nth-child(5) .placeholder-image { background: linear-gradient(135deg, var(--coral), var(--latte)); }
.gallery-item:nth-child(6) .placeholder-image { background: linear-gradient(135deg, var(--peach), var(--rain)); }

/* Guest Photos */
.guest-photos {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.guest-photos-content i {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 20px;
}

.guest-photos h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.guest-photos p {
    max-width: 500px;
    margin: 0 auto 25px;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--peach), var(--coral));
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: all var(--transition-medium);
}

.upload-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 123, 92, 0.4);
}

.upload-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.upload-status {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.upload-status.uploading {
    background: rgba(139, 154, 125, 0.2);
    color: var(--eucalyptus);
}

.upload-status.success {
    background: rgba(139, 154, 125, 0.3);
    color: #2d5a27;
}

.upload-status.error {
    background: rgba(194, 123, 92, 0.2);
    color: #a94442;
}

/* Guest Photos Carousel */
.guest-carousel-wrapper {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 154, 125, 0.3);
}

.guest-carousel-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--eucalyptus);
    margin-bottom: 25px;
    text-align: center;
}

.guest-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    flex: 1;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.4s ease;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f5f5f5;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eucalyptus);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--eucalyptus);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 154, 125, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--eucalyptus);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-slide img,
    .carousel-slide video {
        height: 280px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .guest-carousel {
        gap: 8px;
    }
}

/* ===================================
   RSVP Section
   =================================== */
.rsvp-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--eucalyptus) 0%, var(--rain) 100%);
    position: relative;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--cream-light), transparent);
}

.rsvp-section .section-title,
.rsvp-section .section-description {
    color: var(--white);
}

.rsvp-section .title-decoration {
    background: linear-gradient(90deg, var(--cream), var(--white), var(--cream));
}

.rsvp-section .title-decoration::before {
    background: var(--white);
}

.rsvp-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cream-dark);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.section-number {
    width: 32px;
    height: 32px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-section-intro {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(194, 123, 92, 0.1);
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #c94c4c;
    box-shadow: 0 0 0 3px rgba(201, 76, 76, 0.15);
}

.form-group.has-error .menu-selection {
    border: 2px solid #c94c4c;
    border-radius: 12px;
    padding: 10px;
}

.form-group.has-error > label,
.form-group.has-error .form-hint {
    color: #c94c4c;
}

.error-message {
    color: #c94c4c;
    font-size: 0.9rem;
    display: block;
    margin-top: 8px;
}

.guest-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
}

.guest-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.guest-row input {
    padding: 12px 14px;
}

.song-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
}

.song-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.song-row input {
    padding: 12px 14px;
}

.remove-guest-btn {
    background: none;
    border: 2px solid var(--cream-dark);
    color: var(--text-dark);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.remove-guest-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.add-guest-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--cream);
    border: 2px dashed var(--cream-dark);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.add-guest-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.form-group.has-error .add-guest-btn,
.form-group.has-error .remove-guest-btn {
    border-color: #c94c4c;
    color: #c94c4c;
}

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

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

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.has-error .radio-group {
    border: 2px solid #c94c4c;
    border-radius: 12px;
    padding: 6px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--cream-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.form-group.has-error .radio-label {
    border-color: #c94c4c;
}

.radio-label:hover {
    background: var(--cream);
}

.radio-label input {
    display: none;
}

.radio-custom {
    display: none;
}

.radio-label input:checked ~ span:last-child {
    color: var(--coral);
    font-weight: 500;
}

.radio-label.selected {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(194, 123, 92, 0.12);
    background: var(--cream);
}

/* Menu Selection */
.menu-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.menu-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: var(--cream-light);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.menu-option:hover {
    background: var(--cream);
}

.menu-option input {
    width: 60px;
    padding: 10px;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--coral);
    margin-bottom: 12px;
}

.menu-option input:focus {
    outline: none;
    border-color: var(--coral);
}

.menu-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.menu-option label i {
    font-size: 1.5rem;
    color: var(--eucalyptus);
}

.menu-option label span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Form Hints */
.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-hint-strong {
    background: linear-gradient(135deg, rgba(194, 123, 92, 0.12), rgba(245, 199, 169, 0.18));
    border-left: 5px solid var(--coral);
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.form-hint.error {
    color: #c94c4c;
    font-weight: 600;
}

.shuttle-seats-input {
    width: 180px !important;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
}

/* Optional Section */
.optional-section {
    opacity: 0.9;
}

.optional-section h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cream-dark);
    margin-left: 15px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(194, 123, 92, 0.4);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Guest Details (hidden by default) */
.guest-details {
    display: none;
}

.guest-details.show {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.6s ease;
}

.success-icon {
    font-size: 4rem;
    color: var(--eucalyptus);
    margin-bottom: 25px;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 15px;
}

.footer-heart {
    color: var(--coral);
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-date {
    font-size: 1rem;
    color: var(--peach);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-message {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--eucalyptus);
    opacity: 0.1;
    border-radius: 0 100% 0 100%;
}

.leaf.left {
    left: -50px;
    bottom: -50px;
    transform: rotate(45deg);
}

.leaf.right {
    right: -50px;
    bottom: -50px;
    transform: rotate(-45deg);
    border-radius: 100% 0 100% 0;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(194, 123, 92, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--coral-dark);
}

/* ===================================
   Scroll Animations
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.info-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.info-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.info-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.info-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

.gallery-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.gallery-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.gallery-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }
.gallery-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.3s; }
.gallery-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.35s; }

/* Timeline stagger */
.timeline .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.timeline .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.timeline .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.timeline .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.timeline .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.timeline .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }
.timeline .animate-on-scroll:nth-child(7) { transition-delay: 0.7s; }
.timeline .animate-on-scroll:nth-child(8) { transition-delay: 0.8s; }
.timeline .animate-on-scroll:nth-child(9) { transition-delay: 0.9s; }

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .locations-grid,
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .gift-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right var(--transition-medium);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text-dark);
        font-size: 1rem;
    }

    .language-toggle {
        right: 70px;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-marker {
        left: 12px !important;
        right: auto !important;
    }

    .timeline-icon {
        right: 15px !important;
        left: auto !important;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form */
    .rsvp-form {
        padding: 30px 20px;
    }

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

    .menu-selection {
        grid-template-columns: 1fr;
    }

    /* Countdown */
    .countdown {
        gap: 20px;
    }

    .countdown-item {
        min-width: 70px;
    }

    /* About Stats */
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    /* Taxi Info */
    .taxi-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title .name {
        font-size: 2.5rem;
    }

    .hero-date {
        flex-direction: column;
        gap: 10px;
    }

    .date-divider {
        width: 60px;
        height: 2px;
    }

    .date-text {
        flex-direction: row;
        gap: 8px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-direction: column;
        gap: 15px;
    }

    .countdown-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .countdown-label {
        margin-top: 0;
    }

    .guest-photos {
        padding: 30px 20px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .main-nav,
    .language-toggle,
    .scroll-indicator,
    .back-to-top,
    .hero-cta,
    .location-map,
    .rsvp-section,
    .guest-photos {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    section {
        page-break-inside: avoid;
    }
}
