/* ===== GENEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1ed 100%);
    color: #3d2817;
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== AÇILIŞ BÖLÜMÜ ===== */
.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 50%, #f06292 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.welcome-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcome-content {
    max-width: 850px;
    padding: 40px;
    margin: auto;
    text-align: center;
    color: white;
    animation: slideUp 1s ease-out;
}

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

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    text-align: center;
}

.welcome-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.welcome-date {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: center;
}

.welcome-text {
    max-width: 700px;
    margin: 30px auto;
    line-height: 2;
    font-size: 20px;
    color: #f5f5f5;
    text-align: center;
}

.welcome-text p {
    margin-bottom: 20px;
    text-align: center;
}

.welcome-hint {
    font-size: 0.95rem;
    margin-top: 2rem;
    opacity: 0.9;
    font-style: italic;
    text-align: center;
}

.welcome-btn {
    background: white;
    color: #c2185b;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    margin-top: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.welcome-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== ANA İÇERİK ===== */
.main-content {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== HERO BÖLÜMÜ ===== */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1ed 100%);
    padding: 3rem 2rem;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5d4037;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.heart-decoration {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ===== BÖLÜM BAŞLIKLARI ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #c2185b;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c2185b, transparent);
}

/* ===== MEKTUP BÖLÜMÜ ===== */
.letter-section {
    padding: 5rem 2rem;
    background: white;
}

.letter-card {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1ed 100%);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid #c2185b;
}

.letter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c2185b;
    margin-bottom: 2rem;
    text-align: center;
}

.letter-content p {
    font-size: 1.05rem;
    line-height: 2;
    color: #5d4037;
    margin-bottom: 1.5rem;
    text-align: center;
}

.letter-signature {
    font-style: italic;
    margin-top: 2rem;
}

.letter-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #c2185b;
    margin-top: 1rem;
}

/* ===== HİKAYE BÖLÜMÜ ===== */
.story-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1ed 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #c2185b;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c2185b;
    margin-bottom: 1rem;
    text-align: center;
}

.story-card p {
    color: #5d4037;
    line-height: 1.8;
    text-align: center;
}

/* ===== GALERİ BÖLÜMÜ ===== */
.gallery-section {
    padding: 5rem 2rem;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

/* ===== VİDEO BÖLÜMÜ ===== */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1ed 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    height: 250px;
    background: #000;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid #f0f0f0;
}

.video-caption p {
    font-size: 1rem;
    color: #3d2817;
    margin-bottom: 0.5rem;
    font-style: italic;
    text-align: center;
}

.video-hearts {
    font-size: 1.5rem;
    color: #c2185b;
    letter-spacing: 0.3rem;
}

/* ===== DUYGULAR BÖLÜMÜ ===== */
.feelings-section {
    padding: 5rem 2rem;
    background: white;
}

.feelings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feeling-card {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feeling-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feeling-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

/* ===== MİLESTONE BÖLÜMÜ ===== */
.milestone-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1ed 100%);
}

.milestone-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

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

.milestone-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 0.5rem;
}

.milestone-label {
    font-size: 1rem;
    color: #5d4037;
    font-weight: 600;
}

.milestone-text {
    text-align: center;
    font-size: 1.1rem;
    color: #3d2817;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #3d2817;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-date {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-message {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    opacity: 0.85;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-subtitle {
        font-size: 1.3rem;
    }

    .welcome-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

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

    .milestone-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1.1rem;
    }

    .welcome-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .welcome-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}
