/* ============================================
   MEHMET BERKAN & BAŞAK - NIŞAN DAVETİYESİ
   Deniz Teması - Mavi & Yeşil & Sisli Beyaz
   ============================================ */

:root {
    --deep-sea: #0d3b66;
    --ocean-blue: #1a5276;
    --sea-blue: #2980b9;
    --light-sea: #3498db;
    --sky-blue: #5dade2;
    --sea-green: #148f77;
    --teal: #17a589;
    --mint-green: #48c9b0;
    --light-mint: #76d7c4;
    --gold: #d4a574;
    --gold-light: #e6c9a8;
    --warm-brown: #8b7355;
    --paper-white: rgba(255, 253, 250, 0.28);
    --paper-cream: rgba(255, 250, 245, 0.25);
    --paper-mist: rgba(250, 248, 245, 0.22);
    --text-dark: #1a365d;
    --text-medium: #2c5282;
    --text-light: #4a5568;
    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 50%, var(--sea-green) 100%);
}

/* ==================== INTRO OVERLAY ==================== */
.intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-overlay video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 120%; min-height: 120%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.intro-overlay-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
}

.intro-btn {
    position: absolute;
    bottom: 15%; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 50px;
    font-family: var(--font-elegant);
    font-size: 1.35rem;
    font-style: italic;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    animation: introBtnFloat 3s ease-in-out infinite;
    z-index: 10;
}

.intro-btn:hover {
    transform: translateX(-50%) translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.intro-btn-text { font-weight: 600; letter-spacing: 1px; }
.intro-btn-icon { width: 28px; height: 28px; transition: transform 0.4s ease; }

.intro-btn:hover .intro-btn-icon { transform: scale(1.1) rotate(5deg); }

@keyframes introBtnFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* ==================== FLASH OVERLAY ==================== */
.flash-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.flash-overlay.active {
    opacity: 1;
    animation: flashEffect 0.8s ease-out forwards;
}

@keyframes flashEffect {
    0% { opacity: 1; background: white; }
    60% { opacity: 1; background: rgba(255,255,255,0.95); }
    100% { opacity: 0; background: transparent; }
}

/* ==================== VIDEO BACKGROUND ==================== */
.video-background {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.3) 0%, rgba(26, 82, 118, 0.25) 50%, rgba(20, 143, 119, 0.2) 100%);
}

.video-waves {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 200px;
    background: linear-gradient(to top, rgba(72, 201, 176, 0.1) 0%, transparent 100%);
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

/* ==================== FLOATING SHELLS ==================== */
.floating-shells {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-shell {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.35;
    filter: blur(1px);
    animation: floatShell 25s infinite ease-in-out;
}

.shell-1 { left: 5%; top: 10%; animation-delay: 0s; animation-duration: 22s; font-size: 2rem; }
.shell-2 { left: 20%; top: 60%; animation-delay: 3s; animation-duration: 28s; font-size: 3rem; }
.shell-3 { left: 40%; top: 20%; animation-delay: 6s; animation-duration: 24s; font-size: 2.2rem; }
.shell-4 { left: 60%; top: 70%; animation-delay: 2s; animation-duration: 26s; font-size: 2.8rem; }
.shell-5 { left: 80%; top: 30%; animation-delay: 5s; animation-duration: 23s; font-size: 2rem; }
.shell-6 { left: 90%; top: 80%; animation-delay: 8s; animation-duration: 27s; font-size: 2.5rem; }
.shell-7 { left: 35%; top: 85%; animation-delay: 4s; animation-duration: 25s; font-size: 2.3rem; }

@keyframes floatShell {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.25; }
    25% { transform: translate(30px, -40px) rotate(10deg); opacity: 0.4; }
    50% { transform: translate(-20px, -60px) rotate(-5deg); opacity: 0.35; }
    75% { transform: translate(40px, -30px) rotate(8deg); opacity: 0.4; }
}

/* ==================== PARTICLES ==================== */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px; height: 8px;
    background: radial-gradient(circle, rgba(72, 201, 176, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatUp 20s infinite ease-in-out;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 15%; animation-delay: 3s; animation-duration: 22s; }
.particle:nth-child(3) { left: 25%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(5) { left: 55%; animation-delay: 2s; animation-duration: 21s; }
.particle:nth-child(6) { left: 70%; animation-delay: 4s; animation-duration: 23s; }
.particle:nth-child(7) { left: 85%; animation-delay: 1.5s; animation-duration: 18s; }
.particle:nth-child(8) { left: 95%; animation-delay: 3.5s; animation-duration: 20s; }

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(90vh) scale(1); }
    90% { opacity: 0.8; transform: translateY(10vh) scale(0.8); }
    100% { opacity: 0; transform: translateY(-10vh) scale(0); }
}

/* ==================== MUSIC CONTROL ==================== */
.music-control {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 100;
}

.music-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sea-green));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.music-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(0,0,0,0.4); }
.music-btn svg { width: 24px; height: 24px; }
.music-btn.playing { animation: musicPulse 2s ease-in-out infinite; }

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 4px 30px rgba(20, 143, 119, 0.6); }
}

.music-label { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.8); letter-spacing: 1px; }

/* ==================== INVITATION CARD ==================== */
.invitation-card {
    position: relative;
    z-index: 10;
    background: var(--paper-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 750px;
    width: 100%;
    padding: 2.5rem 2rem;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.06), 0 0 50px rgba(72, 201, 176, 0.03), inset 0 0 60px rgba(255, 255, 255, 0.15);
    animation: cardAppear 1.5s ease-out, gentleFloat 8s ease-in-out infinite;
}

.invitation-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.35) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(72, 201, 176, 0.02) 0%, transparent 40%);
    border-radius: 35px;
    pointer-events: none;
}

@keyframes cardAppear {
    0% { opacity: 0; transform: scale(0.9) translateY(50px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(0.2deg); }
    75% { transform: translateY(-3px) rotate(-0.2deg); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(100vh) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.invitation-card.slide-up {
    animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, gentleFloat 8s ease-in-out infinite 1.2s;
}

/* ==================== CARD ORNAMENTS ==================== */
.card-ornament { text-align: center; margin: 0.3rem 0; color: var(--gold); }
.floating-ornament { animation: ornamentFloat 4s ease-in-out infinite; }

@keyframes ornamentFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ornament-svg { width: 180px; height: 45px; }

/* ==================== HEADER ==================== */
.card-header { text-align: center; margin: 0.5rem 0 1.2rem; }
.love-symbol { font-size: 2.8rem; margin-bottom: 0.3rem; animation: loveFloat 3s ease-in-out infinite; }

@keyframes loveFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.08); }
}

.header-subtitle { font-family: var(--font-script); font-size: 1.2rem; color: var(--sea-green); margin-bottom: 0.6rem; }

.header-title { display: flex; flex-direction: column; align-items: center; }
.names-row { display: flex; flex-direction: row; align-items: center; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

/* SCRIPT FONTLU İSİMLER */
.name-script { font-family: var(--font-script); color: var(--deep-sea); line-height: 1.1; }
.bride-name { font-size: clamp(2.8rem, 8vw, 4rem); }
.ampersand-script { font-family: var(--font-script); font-size: clamp(2.5rem, 7vw, 3.5rem); color: #3d9a8b; text-shadow: 0 2px 15px rgba(61, 154, 139, 0.5); animation: ampersandPulse 2s ease-in-out infinite; }
.groom-name { font-size: clamp(2.2rem, 6vw, 3rem); text-align: left; }

@keyframes ampersandPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

/* ==================== NAMES SECTION ==================== */
.names-section { display: flex; align-items: center; justify-content: center; gap: 1.8rem; margin: 1.2rem 0; flex-wrap: wrap; }
.name-block { text-align: center; position: relative; }
.parent-names { padding-top: 0.4rem; }
.parent-label { display: block; font-family: var(--font-script); font-size: 1rem; color: var(--ocean-blue); margin-bottom: 0.2rem; }
.parent-name-large { font-family: var(--font-elegant); font-size: 1.35rem; color: var(--deep-sea); font-weight: 600; font-style: italic; letter-spacing: 0.5px; }

.heart-divider span { font-family: var(--font-script); font-size: 2.8rem; color: #3d9a8b; text-shadow: 0 2px 12px rgba(61, 154, 139, 0.5); animation: heartbeat 2s ease-in-out infinite; }

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.12); }
    30% { transform: scale(1); }
    45% { transform: scale(1.08); }
    60% { transform: scale(1); }
}

/* ==================== DIVIDER ==================== */
.divider-line { display: flex; align-items: center; justify-content: center; margin: 1rem 0; gap: 0.4rem; }
.divider-line::before, .divider-line::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); max-width: 90px; }
.divider-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 12px rgba(212, 165, 116, 0.6); }
.divider-shell { font-size: 1.1rem; animation: shellRotate 4s ease-in-out infinite; }

@keyframes shellRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(12deg); }
}

/* ==================== INFO SECTION ==================== */
.info-section { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.2rem 0; }

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem;
    background: var(--paper-cream);
    border-radius: 18px;
    border: 1px solid rgba(212, 165, 116, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(72, 201, 176, 0.15), transparent, rgba(212, 165, 116, 0.15));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.info-card:hover::before { opacity: 1; }
.info-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.6); }

.info-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sea-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(13, 59, 102, 0.2);
}

.info-icon svg { width: 22px; height: 22px; color: white; }
.info-text { flex: 1; }
.info-label { display: block; font-family: var(--font-script); font-size: 1.35rem; font-weight: 500; color: var(--ocean-blue); margin-bottom: 0.2rem; }
.info-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--deep-sea); margin-bottom: 0.2rem; }
.info-time { font-family: var(--font-display); font-size: 1.15rem; color: var(--sea-green); font-weight: 500; }

/* ==================== COUNTDOWN ==================== */
.countdown-section { text-align: center; margin: 1.5rem 0; padding: 1.2rem; background: linear-gradient(135deg, rgba(13, 59, 102, 0.06), rgba(20, 143, 119, 0.04)); border-radius: 22px; border: 1px solid rgba(212, 165, 116, 0.18); }
.countdown-label { font-family: var(--font-script); font-size: 1rem; color: var(--ocean-blue); margin-bottom: 0.8rem; }
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 55px; }
.countdown-number { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--deep-sea); line-height: 1; }
.countdown-text { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-top: 0.2rem; }
.countdown-separator { font-family: var(--font-display); font-size: 1.8rem; color: var(--sea-green); opacity: 0.5; margin-bottom: 0.9rem; }

/* ==================== PROGRAM SECTION ==================== */
.program-section { margin: 1.5rem 0; padding: 1.2rem; background: var(--paper-mist); border-radius: 18px; border: 1px solid rgba(212, 165, 116, 0.12); }
.program-title { font-family: var(--font-script); font-size: 1.2rem; color: var(--ocean-blue); text-align: center; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.program-icon { font-size: 0.95rem; }

.program-timeline { position: relative; padding-left: 1.8rem; }
.program-timeline::before { content: ''; position: absolute; left: 50px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--sea-green), rgba(212, 165, 116, 0.25)); }

.program-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1rem; position: relative; }
.program-item:last-child { margin-bottom: 0; }
.program-time { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: var(--sea-green); min-width: 42px; text-align: right; }
.program-dot { width: 11px; height: 11px; background: linear-gradient(135deg, var(--sea-green), var(--mint-green)); border-radius: 50%; position: absolute; left: 46px; top: 3px; box-shadow: 0 0 10px rgba(72, 201, 176, 0.5); z-index: 1; }
.program-content { flex: 1; padding-left: 0.4rem; }
.program-content h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--deep-sea); margin-bottom: 0.12rem; }
.program-content p { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-light); }

/* ==================== VENUE SECTION ==================== */
.venue-section { margin: 1.5rem 0; padding-top: 1.2rem; border-top: 1px solid rgba(212, 165, 116, 0.18); }

.venue-title-wrapper { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.2rem; }
.venue-icon-large { font-size: 2rem; }
.venue-section-title { font-family: var(--font-script); font-size: 2.2rem; color: var(--ocean-blue); text-align: center; font-weight: 600; }

.venue-image-container { position: relative; width: 100%; border-radius: 20px; overflow: hidden; margin-bottom: 1.2rem; box-shadow: 0 8px 35px rgba(13, 59, 102, 0.1); }
.venue-image { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.venue-image-container:hover .venue-image { transform: scale(1.04); }
.venue-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(to top, rgba(13, 59, 102, 0.2), transparent); pointer-events: none; }

/* BİLGİ KARTI - TAM MERKEZDE */
.venue-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: var(--paper-cream);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-info-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.6); }

.venue-info-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sea-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 59, 102, 0.25);
}

.venue-info-icon svg { width: 26px; height: 26px; color: white; }

.venue-info-text { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.venue-info-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--deep-sea); text-align: center; }
.venue-info-address { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-light); text-align: center; }

.venue-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--sea-green), var(--teal));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 143, 119, 0.3);
    margin-top: 0.3rem;
}

.venue-map-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(20, 143, 119, 0.35); background: linear-gradient(135deg, var(--teal), var(--sea-green)); }
.venue-map-btn svg { transition: transform 0.3s ease; }
.venue-map-btn:hover svg { transform: translateX(2px); }

/* ==================== FOOTER ==================== */
.card-footer { text-align: center; margin-top: 1.2rem; padding-top: 1.2rem; }
.footer-quote { font-family: var(--font-elegant); font-size: 1rem; font-style: italic; color: var(--text-medium); margin-bottom: 0.8rem; line-height: 1.5; }
.footer-hearts { color: #2e8b57; font-size: 1.4rem; margin-bottom: 0.6rem; display: flex; justify-content: center; align-items: center; gap: 0.4rem; }
.heart-animate { display: inline-block; animation: heartBeat 2s ease-in-out infinite; }

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.18); }
    20% { transform: scale(1); }
    30% { transform: scale(1.12); }
    40% { transform: scale(1); }
}

.footer-date { font-family: var(--font-script); font-size: 1rem; color: var(--text-light); }

/* ==================== BRANDING ==================== */
.branding {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.branding-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.branding-link {
    color: var(--gold);
    font-weight: 300;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 165, 116, 0.4);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.branding-link:hover {
    color: var(--ocean-blue);
    border-bottom-color: var(--ocean-blue);
    text-shadow: 0 0 8px rgba(20, 143, 119, 0.3);
}

/* ==================== ANİMASYONLAR ==================== */
.animate-float { animation: fadeInUp 1s ease-out, float 5s ease-in-out infinite; }
.animate-scale { animation: fadeInUp 1s ease-out, scaleIn 1.2s ease-out; }
.animate-slide-left { animation: fadeInUp 1s ease-out, slideL 1s ease-out; }
.animate-slide-right { animation: fadeInUp 1s ease-out, slideR 1s ease-out; }
.animate-pulse { animation: fadeInUp 1s ease-out, heartbeat 2s ease-in-out infinite; }
.animate-expand { animation: fadeInUp 1s ease-out, expand 1.5s ease-out; }
.animate-fade-up { animation: fadeInUp 1s ease-out both; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes scaleIn { 0% { transform: scale(0.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes slideL { 0% { transform: translateX(35px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes slideR { 0% { transform: translateX(-35px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes expand { 0% { transform: scaleX(0); opacity: 0; } 100% { transform: scaleX(1); opacity: 1; } }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 700px) {
    .invitation-card { padding: 2rem 1.3rem; border-radius: 28px; }
    .info-section { grid-template-columns: 1fr; gap: 1rem; }
    .names-section { gap: 1.3rem; flex-direction: column; }
    .countdown-number { font-size: 1.7rem; }
    .countdown-timer { gap: 0.25rem; }
    .countdown-item { min-width: 48px; }
    .music-control { top: 1rem; right: 1rem; }
    .intro-btn { padding: 0.8rem 1.8rem; font-size: 1.2rem; }
    .intro-btn-text { font-size: 1.2rem; }
    .names-row { gap: 0.2rem; flex-direction: column; text-align: center; }
    .groom-name { text-align: center; }
}

@media (max-width: 450px) {
    body { padding: 1rem 0.5rem; }
    .invitation-card { padding: 1.8rem 1rem; border-radius: 22px; }
    .bride-name { font-size: 2.2rem; }
    .ampersand-script { font-size: 2rem; margin: -0.3rem 0; }
    .groom-name { font-size: 1.8rem; }
    .parent-name-large { font-size: 1.15rem; }
    .info-card { padding: 1rem; border-radius: 16px; }
    .venue-image { height: 140px; }
    .program-timeline { padding-left: 1.4rem; }
    .program-timeline::before { left: 42px; }
    .program-time { font-size: 0.8rem; min-width: 38px; }
    .program-dot { left: 38px; width: 9px; height: 9px; }
    .venue-info-card { padding: 1rem; }
    .venue-info-name { font-size: 1.2rem; }
}