
    :root {
        /* Rustik Romantik Renk Paleti */
        --fildisi-beyaz: #FDFDF9;
        --antika-krem: #F9F5EF;
        --adacayi-yesil: #A8B6A1;
        --sarap-gulu: #CFA8A5;
        --komur-gri: #4A4A4A;
        --soft-sage: #B8C7B3;
        --dusty-pink: #E4BDB8;
        --warm-cream: #F5F2EB;
        --text-dark: #3A3A3A;
        --text-light: #6B6B6B;
        --accent-gold: #D4B896;
        
        /* Dekoratif Gradients */
        --gradient-paper: linear-gradient(135deg, #FDFDF9 0%, #F9F5EF 50%, #F5F2EB 100%);
        --gradient-sage: linear-gradient(135deg, #B8C7B3 0%, #A8B6A1 50%, #9CAF94 100%);
        --gradient-rose: linear-gradient(135deg, #E4BDB8 0%, #CFA8A5 50%, #C19A97 100%);
        --gradient-watercolor: linear-gradient(45deg, rgba(168, 182, 161, 0.1) 0%, rgba(207, 168, 165, 0.1) 50%, rgba(245, 242, 235, 0.1) 100%);
        
        /* Sanatsal Gölgeler */
        --shadow-paper: 0 4px 20px rgba(74, 74, 74, 0.08);
        --shadow-soft: 0 8px 32px rgba(168, 182, 161, 0.12);
        --shadow-deep: 0 12px 40px rgba(207, 168, 165, 0.15);
        --shadow-artistic: 0 6px 25px rgba(74, 74, 74, 0.1), 0 2px 8px rgba(168, 182, 161, 0.08);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    body {
        font-family: 'Raleway', 'Quicksand', sans-serif;
        line-height: 1.8;
        color: var(--text-dark);
        background: var(--gradient-paper);
        overflow-x: hidden;
        font-weight: 300;
        position: relative;
    }

    /* Sanatsal Kağıt Texture Background */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 20%, rgba(168, 182, 161, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(207, 168, 165, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 60%, rgba(245, 242, 235, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    /* Özel Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--antika-krem);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gradient-sage);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--adacayi-yesil);
    }

    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
    }

    /* El Çizimi Dekorasyonlar */
    .artistic-decoration {
        position: absolute;
        pointer-events: none;
        opacity: 0.4;
        z-index: 1;
    }

    .olive-branch {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 50c10-5 20-3 30 0s20 5 30 0" stroke="%23A8B6A1" stroke-width="2" fill="none"/><ellipse cx="25" cy="47" rx="3" ry="6" fill="%23A8B6A1" opacity="0.7"/><ellipse cx="35" cy="51" rx="3" ry="6" fill="%23A8B6A1" opacity="0.7"/><ellipse cx="45" cy="48" rx="3" ry="6" fill="%23A8B6A1" opacity="0.7"/><ellipse cx="55" cy="52" rx="3" ry="6" fill="%23A8B6A1" opacity="0.7"/><ellipse cx="65" cy="49" rx="3" ry="6" fill="%23A8B6A1" opacity="0.7"/><ellipse cx="75" cy="51" rx="3" ry="6" fill="%23A8B6A1" opacity="0.7"/></svg>') center/contain no-repeat;
    }

    .watercolor-bloom {
        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="25" fill="%23CFA8A5" opacity="0.3"/><circle cx="50" cy="50" r="15" fill="%23E4BDB8" opacity="0.4"/><circle cx="50" cy="50" r="8" fill="%23F9F5EF" opacity="0.6"/></svg>') center/contain no-repeat;
    }

    .moon-phase {
        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="20" fill="none" stroke="%23A8B6A1" stroke-width="1.5"/><path d="M35 50a15 15 0 0 1 0-15a15 15 0 0 1 0 30z" fill="%23CFA8A5" opacity="0.6"/></svg>') center/contain no-repeat;
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(253, 253, 249, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 1.5rem 0;
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(168, 182, 161, 0.2);
    }

    .header.scrolled {
        background: rgba(253, 253, 249, 0.98);
        box-shadow: var(--shadow-paper);
        padding: 1rem 0;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: 'Allura', cursive;
        font-size: 2.2rem;
        color: var(--komur-gri);
        letter-spacing: 1px;
        text-shadow: 1px 1px 3px rgba(168, 182, 161, 0.3);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 3rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-light);
        font-weight: 400;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'Cormorant Garamond', serif;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background: var(--gradient-sage);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--adacayi-yesil);
        text-shadow: 1px 1px 2px rgba(168, 182, 161, 0.3);
    }

    /* Mobile Menu */
    .dropdown-menu {
        display: none;
    }

    .menu-toggle {
        background: var(--gradient-sage);
        border: none;
        padding: 0.8rem 1.2rem;
        border-radius: 25px;
        color: var(--fildisi-beyaz);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-soft);
        font-family: 'Raleway', sans-serif;
    }

    .menu-toggle:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-deep);
    }

    .dropdown-content {
        position: fixed;
        top: 85px;
        right: 20px;
        background: var(--fildisi-beyaz);
        min-width: 220px;
        border-radius: 20px;
        padding: 1.5rem 0;
        box-shadow: var(--shadow-artistic);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s ease;
        border: 1px solid rgba(168, 182, 161, 0.2);
    }

    .dropdown-content.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-content a {
        display: block;
        padding: 0.8rem 2rem;
        color: var(--text-dark);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-family: 'Cormorant Garamond', serif;
    }

    .dropdown-content a:hover {
        background: var(--gradient-watercolor);
        color: var(--adacayi-yesil);
        padding-left: 2.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        background: var(--gradient-paper);
        overflow: hidden;
        padding: 120px 2rem 80px;
    }

    /* Sanatsal Dekorasyonlar */
    .hero::before {
        content: '';
        position: absolute;
        top: 10%;
        left: 8%;
        width: 120px;
        height: 80px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80"><path d="M10 40c20-10 40-5 60 0s40 10 60 0" stroke="%23A8B6A1" stroke-width="2" fill="none" opacity="0.6"/><ellipse cx="20" cy="35" rx="4" ry="8" fill="%23A8B6A1" opacity="0.5"/><ellipse cx="35" cy="42" rx="4" ry="8" fill="%23A8B6A1" opacity="0.5"/><ellipse cx="50" cy="38" rx="4" ry="8" fill="%23A8B6A1" opacity="0.5"/><ellipse cx="65" cy="43" rx="4" ry="8" fill="%23A8B6A1" opacity="0.5"/><ellipse cx="80" cy="39" rx="4" ry="8" fill="%23A8B6A1" opacity="0.5"/><ellipse cx="95" cy="42" rx="4" ry="8" fill="%23A8B6A1" opacity="0.5"/></svg>') center/contain no-repeat;
        opacity: 0.4;
        animation: gentle-sway 8s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 12%;
        right: 10%;
        width: 100px;
        height: 100px;
        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="35" fill="%23CFA8A5" opacity="0.2"/><circle cx="50" cy="50" r="20" fill="%23E4BDB8" opacity="0.3"/><circle cx="50" cy="50" r="10" fill="%23F9F5EF" opacity="0.4"/><path d="M30 50c5-15 15-15 20 0s15 15 20 0" stroke="%23A8B6A1" stroke-width="1.5" fill="none" opacity="0.6"/></svg>') center/contain no-repeat;
        opacity: 0.3;
        animation: gentle-float 10s ease-in-out infinite reverse;
    }

    @keyframes gentle-sway {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        50% { 
            transform: translateY(-12px) rotate(2deg); 
        }
    }

    @keyframes gentle-float {
        0%, 100% { 
            transform: translateY(0px) scale(1); 
        }
        50% { 
            transform: translateY(-15px) scale(1.05); 
        }
    }

    .welcome-text {
        position: absolute;
        top: 0%;
        margin-top: -4vh;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Playlist Script', cursive;
        font-size: clamp(3.5rem, 9vw, 7rem);
        color: var(--sarap-gulu);
        z-index: 5;
        opacity: 0.9;
        animation: soft-breathe 6s ease-in-out infinite;
        letter-spacing: 2px;
        text-shadow: 2px 2px 8px rgba(207, 168, 165, 0.3);
    }

    @keyframes soft-breathe {
        0%, 100% { 
            transform: translateX(-50%) translateY(0px) scale(1); 
        }
        50% { 
            transform: translateX(-50%) translateY(-8px) scale(1.02); 
        }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 900px;
        left: 5%;
        width: 90%;
        padding: 4rem 3.5rem;
        background: rgba(253, 253, 249, 0.7);
        border-radius: 30px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(168, 182, 161, 0.3);
        box-shadow: var(--shadow-artistic);
        margin-top: 20vh;
        position: relative;
    }
    .hero-content * {
    margin: 0.3rem 0;
    line-height: 1.2;
}

    /* Polaroid efekti için hero content */
    .hero-content::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: var(--fildisi-beyaz);
        border-radius: 35px;
        z-index: -1;
        box-shadow: var(--shadow-deep);
        transform: rotate(-1deg);
    }

    .hero-background-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        z-index: -1;
        opacity: 0.25;
        border-radius: 30px;
        filter: sepia(20%) saturate(0.8) brightness(1.1);
    }

    .hero-subtitle {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        color: var(--text-light);
        margin-bottom: 1rem;
        font-style: italic;
        font-weight: 400;
        opacity: 0.9;
    }

    .hero-title {
        font-family: 'Allura', cursive;
        font-size: clamp(3rem, 6vw, 5rem);
        white-space: nowrap;
        color: var(--komur-gri);
        margin-bottom: 1.5rem;
        letter-spacing: 3px;
        text-shadow: 2px 2px 6px rgba(168, 182, 161, 0.3);
    }

    .hero-date {
        font-size: 1.5rem;
        font-family: 'Libre Baskerville', serif;
        color: var(--adacayi-yesil);
        margin-bottom: 3rem;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .hero-quote {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        font-style: italic;
        opacity: 0.8;
        line-height: 1.6;
    }

    /* Countdown */
    .countdown {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 550px;
        margin: 0 auto;
    }

    .countdown-item {
        background: rgba(253, 253, 249, 0.9);
        padding: 2rem 1.2rem;
        border-radius: 20px;
        border: 2px solid rgba(168, 182, 161, 0.3);
        box-shadow: var(--shadow-soft);
        transition: all 0.4s ease;
        text-align: center;
        backdrop-filter: blur(15px);
        position: relative;
    }

    .countdown-item::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: var(--gradient-watercolor);
        border-radius: 25px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .countdown-item:hover::before {
        opacity: 1;
    }

    .countdown-item:hover {
        transform: translateY(-5px) rotate(1deg);
        box-shadow: var(--shadow-deep);
        background: rgba(253, 253, 249, 0.95);
    }

    .countdown-number {
        font-size: 2.2rem;
        font-weight: 600;
        display: block;
        color: var(--sarap-gulu);
        margin-bottom: 0.5rem;
        font-family: 'Libre Baskerville', serif;
        text-shadow: 1px 1px 3px rgba(207, 168, 165, 0.3);
    }

    .countdown-label {
        font-size: 0.85rem;
        color: var(--text-light);
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1.5px;
        font-family: 'Raleway', sans-serif;
    }

    /* Section Styles */
    .section {
        padding: 120px 0;
        position: relative;
    }

    .section-title {
        font-family: 'Allura', cursive;
        font-size: clamp(3rem, 5vw, 4.5rem);
        text-align: center;
        margin-bottom: 1rem;
        color: var(--komur-gri);
        letter-spacing: 2px;
        text-shadow: 2px 2px 6px rgba(168, 182, 161, 0.3);
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 4rem;
        font-style: italic;
        font-weight: 300;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.6;
    }

    .poetic-quote {
        text-align: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        color: var(--sarap-gulu);
        font-style: italic;
        margin: 3rem auto;
        max-width: 600px;
        opacity: 0.9;
        line-height: 1.7;
    }

    /* Our Story */
    .story {
        background: var(--fildisi-beyaz);
        position: relative;
    }

    .story::before {
        content: '';
        position: absolute;
        top: 15%;
        left: -30px;
        width: 60px;
        height: 60px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="25" fill="none" stroke="%23A8B6A1" stroke-width="1.5" opacity="0.6"/><path d="M15 30a15 15 0 0 1 0-15a15 15 0 0 1 0 30z" fill="%23CFA8A5" opacity="0.4"/></svg>') center/contain no-repeat;
        opacity: 0.5;
        animation: gentle-float 12s ease-in-out infinite;
    }

    .story::after {
        content: '';
        position: absolute;
        bottom: 20%;
        right: -25px;
        width: 80px;
        height: 80px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M10 40c15-8 30-3 45 0s30 8 45 0" stroke="%23A8B6A1" stroke-width="1.5" fill="none" opacity="0.5"/><ellipse cx="20" cy="37" rx="3" ry="6" fill="%23A8B6A1" opacity="0.4"/><ellipse cx="35" cy="42" rx="3" ry="6" fill="%23A8B6A1" opacity="0.4"/><ellipse cx="50" cy="39" rx="3" ry="6" fill="%23A8B6A1" opacity="0.4"/><ellipse cx="65" cy="43" rx="3" ry="6" fill="%23A8B6A1" opacity="0.4"/></svg>') center/contain no-repeat;
        opacity: 0.4;
        animation: gentle-sway 10s ease-in-out infinite reverse;
    }

    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gradient-sage);
        transform: translateX(-50%);
        border-radius: 2px;
        opacity: 0.7;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 5rem;
        width: 45%;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 55%;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 40px;
        width: 16px;
        height: 16px;
        background: var(--sarap-gulu);
        border-radius: 50%;
        border: 4px solid var(--fildisi-beyaz);
        box-shadow: var(--shadow-soft);
    }

    .timeline-item:nth-child(odd)::before {
        right: -8px;
    }

    .timeline-item:nth-child(even)::before {
        left: -8px;
    }

    .timeline-content {
        background: var(--fildisi-beyaz);
        padding: 2.5rem;
        border-radius: 25px;
        box-shadow: var(--shadow-artistic);
        border: 2px solid rgba(168, 182, 161, 0.2);
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        transform: translateY(-5px) rotate(0.5deg);
        box-shadow: var(--shadow-deep);
    }

    /* Polaroid efekti */
    .timeline-content::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        background: var(--warm-cream);
        border-radius: 30px;
        z-index: -1;
        transform: rotate(-0.5deg);
    }

    .timeline-content::after {
        content: '';
        position: absolute;
        top: 40px;
        width: 0;
        height: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -12px;
        border-left: 12px solid var(--fildisi-beyaz);
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -12px;
        border-right: 12px solid var(--fildisi-beyaz);
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }

    .timeline-photo {
        width: 100%;
        height: 220px;
        border-radius: 15px;
        object-fit: cover;
        margin-bottom: 1.5rem;
        border: 3px solid var(--warm-cream);
        filter: sepia(10%) saturate(0.9);
        transition: all 0.3s ease;
    }

    .timeline-photo:hover {
        filter: sepia(5%) saturate(1);
        transform: scale(1.02);
    }

    .timeline-date {
        color: var(--adacayi-yesil);
        font-weight: 500;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.95rem;
        font-family: 'Raleway', sans-serif;
    }

    .timeline-title {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.6rem;
        color: var(--komur-gri);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .timeline-text {
        font-family: 'Raleway', sans-serif;
        color: var(--text-light);
        line-height: 1.7;
        font-weight: 300;
    }

    /* Wedding Details */
    .details {
        background: var(--gradient-watercolor);
        position: relative;
    }

    .details::before {
        content: '';
        position: absolute;
        top: 20%;
        right: 5%;
        width: 100px;
        height: 100px;
        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="30" fill="%23CFA8A5" opacity="0.15"/><circle cx="50" cy="50" r="18" fill="%23E4BDB8" opacity="0.2"/><circle cx="50" cy="50" r="10" fill="%23F9F5EF" opacity="0.3"/><path d="M30 30l40 40M70 30l-40 40" stroke="%23A8B6A1" stroke-width="1" opacity="0.4"/></svg>') center/contain no-repeat;
        animation: gentle-float 15s ease-in-out infinite;
    }

    .details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .detail-card {
        background: var(--fildisi-beyaz);
        padding: 3.5rem 2.5rem;
        border-radius: 25px;
        text-align: center;
        box-shadow: var(--shadow-artistic);
        border: 2px solid rgba(168, 182, 161, 0.2);
        transition: all 0.4s ease;
        position: relative;
    }

    .detail-card::before {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        background: var(--warm-cream);
        border-radius: 30px;
        z-index: -1;
        transform: rotate(-1deg);
        transition: transform 0.3s ease;
    }

    .detail-card:hover::before {
        transform: rotate(1deg);
    }

    .detail-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-deep);
    }

    .detail-icon {
        font-size: 2.8rem;
        color: var(--sarap-gulu);
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(207, 168, 165, 0.3);
    }

    .detail-title {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.6rem;
        color: var(--komur-gri);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .detail-text {
        font-family: 'Raleway', sans-serif;
        color: var(--text-light);
        line-height: 1.6;
        font-weight: 300;
    }

    /* Forms */
    .form-section {
        background: var(--antika-krem);
        position: relative;
    }

    .form-section::before {
        content: '';
        position: absolute;
        top: 30%;
        left: 8%;
        width: 70px;
        height: 70px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 70"><path d="M10 35c12-6 24-2 36 0s24 6 36 0" stroke="%23A8B6A1" stroke-width="1.5" fill="none" opacity="0.4"/><ellipse cx="18" cy="32" rx="2.5" ry="5" fill="%23A8B6A1" opacity="0.3"/><ellipse cx="28" cy="36" rx="2.5" ry="5" fill="%23A8B6A1" opacity="0.3"/><ellipse cx="38" cy="33" rx="2.5" ry="5" fill="%23A8B6A1" opacity="0.3"/><ellipse cx="48" cy="37" rx="2.5" ry="5" fill="%23A8B6A1" opacity="0.3"/><ellipse cx="58" cy="34" rx="2.5" ry="5" fill="%23A8B6A1" opacity="0.3"/></svg>') center/contain no-repeat;
        animation: gentle-sway 14s ease-in-out infinite;
    }

    .form-container {
        max-width: 650px;
        margin: 0 auto;
        background: var(--fildisi-beyaz);
        padding: 3rem;
        border-radius: 30px;
        box-shadow: var(--shadow-artistic);
        border: 2px solid rgba(168, 182, 161, 0.2);
        position: relative;
    }

    .form-container::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        background: var(--warm-cream);
        border-radius: 35px;
        z-index: -1;
        transform: rotate(-0.5deg);
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-label {
        display: block;
        margin-bottom: 0.8rem;
        font-weight: 500;
        color: var(--komur-gri);
        font-size: 1rem;
        font-family: 'Cormorant Garamond', serif;
    }

    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 1.2rem;
        border: 2px solid rgba(168, 182, 161, 0.3);
        border-radius: 15px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: var(--fildisi-beyaz);
        font-family: 'Raleway', sans-serif;
        color: var(--text-dark);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--adacayi-yesil);
        box-shadow: 0 0 0 4px rgba(168, 182, 161, 0.1);
        background: var(--warm-cream);
    }

    .form-textarea {
        resize: vertical;
        min-height: 140px;
        font-family: 'Raleway', sans-serif;
    }

    .btn {
        background: var(--gradient-sage);
        color: var(--fildisi-beyaz);
        border: none;
        padding: 1.2rem 3rem;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: var(--shadow-soft);
        text-decoration: none;
        display: inline-block;
        font-family: 'Raleway', sans-serif;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-deep);
        background: var(--adacayi-yesil);
    }

    /* Gallery */
    .gallery-section {
        background: var(--fildisi-beyaz);
        position: relative;
    }

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 25%;
        right: -20px;
        width: 80px;
        height: 80px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="25" fill="%23CFA8A5" opacity="0.2"/><circle cx="40" cy="40" r="15" fill="%23E4BDB8" opacity="0.25"/><circle cx="40" cy="40" r="8" fill="%23F9F5EF" opacity="0.3"/><path d="M25 40c5-8 10-8 15 0s10 8 15 0" stroke="%23A8B6A1" stroke-width="1.2" fill="none" opacity="0.5"/></svg>') center/contain no-repeat;
        opacity: 0.4;
        animation: gentle-float 16s ease-in-out infinite;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    /* Film Rulosu Efekti */
    .gallery-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-artistic);
        transition: all 0.4s ease;
        cursor: pointer;
        background: var(--fildisi-beyaz);
        padding: 15px;
    }

    .gallery-item::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border: 2px solid var(--warm-cream);
        border-radius: 15px;
        z-index: 1;
        pointer-events: none;
    }

    .gallery-item:hover {
        transform: translateY(-8px) rotate(1deg);
        box-shadow: var(--shadow-deep);
    }

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: all 0.4s ease;
        border-radius: 10px;
        filter: sepia(15%) saturate(0.85) brightness(1.05);
    }

    .gallery-item:hover img {
        transform: scale(1.05);
        filter: sepia(5%) saturate(1) brightness(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: linear-gradient(transparent, rgba(74, 74, 74, 0.9));
        color: var(--fildisi-beyaz);
        padding: 1.5rem;
        border-radius: 0 0 10px 10px;
        transform: translateY(100%);
        transition: all 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-overlay h3 {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .gallery-overlay p {
        font-family: 'Raleway', sans-serif;
        font-size: 0.9rem;
        opacity: 0.9;
        font-weight: 300;
    }

    /* Upload Section */
    .upload-section {
        background: var(--gradient-watercolor);
        position: relative;
    }

    .upload-area {
        border: 3px dashed var(--adacayi-yesil);
        border-radius: 25px;
        padding: 4rem;
        text-align: center;
        background: rgba(253, 253, 249, 0.8);
        cursor: pointer;
        transition: all 0.4s ease;
        backdrop-filter: blur(15px);
        position: relative;
    }

    .upload-area::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: var(--warm-cream);
        border-radius: 30px;
        z-index: -1;
        transform: rotate(-1deg);
        transition: transform 0.3s ease;
    }

    .upload-area:hover::before {
        transform: rotate(1deg);
    }

    .upload-area:hover {
        background: rgba(253, 253, 249, 0.95);
        transform: scale(1.02);
        border-color: var(--sarap-gulu);
    }

    .upload-icon {
        font-size: 3rem;
        color: var(--adacayi-yesil);
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(168, 182, 161, 0.3);
    }

    .upload-area h3 {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.5rem;
        color: var(--komur-gri);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .upload-area p {
        font-family: 'Raleway', sans-serif;
        color: var(--text-light);
        font-weight: 300;
    }

    /* Social & Accommodation */
    .social-section,
    .accommodation {
        background: var(--antika-krem);
    }

    .social-grid,
    .hotel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    .social-item,
    .hotel-card {
        background: var(--fildisi-beyaz);
        padding: 3rem 2.5rem;
        border-radius: 25px;
        text-align: center;
        box-shadow: var(--shadow-artistic);
        border: 2px solid rgba(168, 182, 161, 0.2);
        transition: all 0.4s ease;
        position: relative;
    }

    .social-item::before,
    .hotel-card::before {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        background: var(--warm-cream);
        border-radius: 30px;
        z-index: -1;
        transform: rotate(-0.5deg);
        transition: transform 0.3s ease;
    }

    .social-item:hover::before,
    .hotel-card:hover::before {
        transform: rotate(0.5deg);
    }

    .social-item:hover,
    .hotel-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-deep);
    }

    .social-item i {
        font-size: 2.5rem;
        color: var(--sarap-gulu);
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(207, 168, 165, 0.3);
    }

    .social-item h3,
    .hotel-card h3 {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.4rem;
        color: var(--komur-gri);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .social-item p,
    .hotel-card p {
        font-family: 'Raleway', sans-serif;
        color: var(--text-light);
        font-weight: 300;
        line-height: 1.6;
    }

    .hashtag {
        text-align: center;
        font-family: 'Allura', cursive;
        font-size: 2rem;
        color: var(--sarap-gulu);
        margin-bottom: 3rem;
        letter-spacing: 1px;
        text-shadow: 2px 2px 6px rgba(207, 168, 165, 0.3);
    }

    /* Footer */
    .footer {
        background: var(--komur-gri);
        color: var(--antika-krem);
        text-align: center;
        padding: 4rem 0;
        position: relative;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 20%;
        width: 60px;
        height: 60px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M10 30c10-5 20-3 30 0s20 5 30 0" stroke="%23F9F5EF" stroke-width="1.5" fill="none" opacity="0.3"/><ellipse cx="18" cy="27" rx="2" ry="4" fill="%23F9F5EF" opacity="0.2"/><ellipse cx="28" cy="31" rx="2" ry="4" fill="%23F9F5EF" opacity="0.2"/><ellipse cx="38" cy="28" rx="2" ry="4" fill="%23F9F5EF" opacity="0.2"/><ellipse cx="48" cy="32" rx="2" ry="4" fill="%23F9F5EF" opacity="0.2"/></svg>') center/contain no-repeat;
        animation: gentle-sway 18s ease-in-out infinite;
    }

    .footer::after {
        content: '';
        position: absolute;
        top: -25px;
        right: 25%;
        width: 50px;
        height: 50px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><circle cx="25" cy="25" r="18" fill="none" stroke="%23F9F5EF" stroke-width="1" opacity="0.2"/><path d="M12 25a13 13 0 0 1 0-13a13 13 0 0 1 0 26z" fill="%23F9F5EF" opacity="0.15"/></svg>') center/contain no-repeat;
        animation: gentle-float 20s ease-in-out infinite reverse;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-logo {
        font-family: 'Allura', cursive;
        font-size: 2rem;
        color: var(--antika-krem);
        letter-spacing: 1px;
    }

    .footer-text {
        font-family: 'Raleway', sans-serif;
        font-weight: 300;
        opacity: 0.8;
    }

    /* Scroll Animations */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* Desktop Responsive Improvements */
    @media (min-width: 1200px) {
        .container {
            max-width: 1400px;
            padding: 0 3rem;
        }
        
        .countdown {
            max-width: 650px;
            gap: 2rem;
        }
        
        .countdown-item {
            padding: 2.5rem 1.5rem;
        }
        
        .countdown-number {
            font-size: 2.8rem;
        }
        
        .welcome-text {
            font-size: clamp(4rem, 11vw, 8rem);
        }
        
        .section {
            padding: 140px 0;
        }
        
        .hero-content {
            max-width: 1000px;
            padding: 5rem 4rem;
        }
    }

    /* Tablet Responsive */
    @media (max-width: 1024px) {
        .nav-links {
            gap: 2rem;
        }
        
        .hero-content {
            width: 90%;
            padding: 3rem 2.5rem;
        }
        
        .countdown {
            max-width: 450px;
            gap: 1.2rem;
        }
        
        .countdown-item {
            padding: 1.8rem 1rem;
        }
        
        .timeline::before {
            left: 30px;
        }
        
        .timeline-item {
            width: 100%;
            left: 0 !important;
            padding-left: 70px;
        }
        
        .timeline-item::before {
            left: 22px !important;
            right: auto !important;
        }
        
        .timeline-content::after {
            display: none;
        }
        
        .timeline-content::before {
            transform: rotate(0deg);
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .dropdown-menu {
            display: block;
        }

        .hero {
            padding: 100px 1rem 60px;
        }

        .hero-content {
            width: 95%;
            padding: 2.5rem 1.8rem;
            margin-top: 4vh;
        }

        .welcome-text {
            font-size: clamp(2.8rem, 15vw, 5rem);
            top: 8%;
        }
        

        .countdown {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            max-width: 320px;
        }

        .countdown-item {
            padding: 1.5rem 1rem;
        }

        .countdown-number {
            font-size: 1.8rem;
        }

        .countdown-label {
            font-size: 0.75rem;
        }

        .section {
            padding: 80px 0;
        }

        .details-grid,
        .gallery-grid,
        .social-grid,
        .hotel-grid {
            grid-template-columns: 1fr;
        }

        .form-container {
            padding: 2rem;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }

        /* Mobile'da sanatsal dekorasyonları gizle */
        .story::before,
        .story::after,
        .details::before,
        .form-section::before,
        .gallery-section::before,
        .footer::before,
        .footer::after {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .hero-content {
            width: 98%;
            height: 50%;
            transform: translateY(15%);
            padding: 2rem 1.2rem;
            margin-top: 2vh;
            left: 1%;
        }

        .welcome-text {
            font-size: clamp(2.2rem, 18vw, 4rem);
            top: 0%;
        }

        .countdown {
            max-width: 280px;
            gap: 0.8rem;
        }

        .countdown-item {
            padding: 1.2rem 0.8rem;
        }

        .countdown-number {
            font-size: 1.6rem;
        }

        .hero-title {
            font-size: clamp(2.2rem, 10vw, 3.5rem);
            white-space: nowrap;
        }

        .hero-date {
            font-size: 1.2rem;
        }

        .timeline-photo {
            height: 180px;
        }

        .gallery-item img {
            height: 220px;
        }

        .form-container {
            padding: 1.5rem;
        }
    }