/* ==========================================
   1. GENEL AYARLAR VE SIFIRLAMA
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Menü linklerine tıklayınca yumuşak kayma sağlar */
}

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background-color: #fafafa;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Ortak Alt Başlık Yapısı */
.section-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #e25c88;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

/* ==========================================
   2. HEADER / MENÜ ALANI
   ========================================== */
.site-header {
    background-color: transparent;
    padding: 25px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: #e25c88;
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #333333;
    font-weight: 600;
    font-size: 15px;
}

.main-nav a:hover {
    color: #e25c88;
}

.btn-whatsapp {
    background-color: #e25c88;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #cc4974;
}

/* ==========================================
   3. HERO / BANNER ALANI
   ========================================== */
.hero-section {
    padding: 60px 0 80px 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #222222;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content .highlight {
    color: #e25c88;
}

.hero-description {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444444;
    font-weight: 500;
}

.tick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #e25c88;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #e25c88;
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: #cc4974;
}

.btn-secondary {
    border: 2px solid #e25c88;
    color: #e25c88;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: #e25c88;
    color: #ffffff;
}

.hero-image-placeholder {
    width: 100%;
    min-height: 450px;
    border: 2px dashed #e25c88;
    background-color: rgba(226, 92, 136, 0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #e25c88;
    font-weight: 500;
    padding: 20px;
}

/* ==========================================
   4. NASIL ÇALIŞIR BÖLÜMÜ
   ========================================== */
.how-it-works-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 32px;
    color: #222222;
    font-weight: 700;
}

.steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image-placeholder {
    width: 100%;
    height: 180px;
    border: 2px dashed #cccccc;
    background-color: #fafafa;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #888888;
    text-align: center;
    margin-bottom: 25px;
    padding: 10px;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.step-number {
    width: 28px;
    height: 28px;
    background-color: #e25c88;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 16px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.step-arrow-placeholder {
    font-size: 24px;
    color: #e25c88;
    padding-top: 75px;
    opacity: 0.6;
}

/* ==========================================
   5. DEMO ALBÜMÜ BÖLÜMÜ
   ========================================== */
.demo-album-section {
    padding: 80px 0;
    background-color: #fdf5f7;
}

.demo-album-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.demo-text-area {
    flex: 1;
}

.demo-text-area h2 {
    font-size: 32px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 15px;
}

.demo-text-area p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
}

.demo-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.curve-arrow-icon {
    font-size: 28px;
    color: #e25c88;
    transform: scaleX(-1) rotate(45deg);
    display: inline-block;
}

.demo-gallery-area {
    flex: 1.2;
}

.gallery-grid-placeholder {
    width: 100%;
    height: 350px;
    border: 2px dashed #e25c88;
    background-color: rgba(226, 92, 136, 0.03);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e25c88;
    font-weight: 500;
    text-align: center;
    position: relative;
    padding: 20px;
}

.play-button-mock {
    margin-top: 15px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #e25c88;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ==========================================
   6. PAKETLERİMİZ (PRICING) BÖLÜMÜ
   ========================================== */
.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-section h2 {
    font-size: 32px;
    color: #222222;
    font-weight: 700;
}

.pricing-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.price-card {
    flex: 1;
    max-width: 500px;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-standard {
    border: 1px solid #f3c2d3;
    box-shadow: 0 4px 20px rgba(226, 92, 136, 0.05);
}

.package-premium {
    border: 1px solid #e1cc9e;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.05);
}

.badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.badge-row h3 {
    font-size: 24px;
    color: #222222;
    font-weight: 700;
}

.badge-pink {
    background-color: #e25c88;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-crown {
    font-size: 24px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 25px;
}

.price .currency {
    font-size: 18px;
    font-weight: 600;
}

.sub-text {
    font-size: 13px;
    color: #c5a059;
    font-weight: 500;
    margin-top: -10px;
    margin-bottom: 25px;
}

.card-features {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #444444;
    font-weight: 500;
}

.pink-ticks .tick { color: #e25c88; font-weight: bold; }
.gold-ticks .tick { color: #c5a059; font-weight: bold; }

.card-note {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.note-pink {
    background-color: #fff0f4;
    color: #666666;
}
.note-pink strong { color: #e25c88; }

.note-gold {
    background-color: #fbf7ed;
    color: #666666;
}
.note-gold strong { color: #c5a059; }

/* ==========================================
   7. SİSTEM ÖZELLİKLERİ BÖLÜMÜ
   ========================================== */
.features-section {
    padding: 40px 0 60px 0;
    background-color: #ffffff;
}

.features-title-area {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    text-align: center;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    background-color: #fff0f4;
    color: #e25c88;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 15px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: #777777;
    line-height: 1.4;
    max-width: 160px;
}

/* ==========================================
   8. FOOTER / İLETİŞİM ALANI
   ========================================== */
.site-footer {
    padding: 80px 0 60px 0;
    background-color: #fdf5f7;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: #e25c88;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-slogan {
    font-size: 24px;
    color: #222222;
    line-height: 1.3;
    font-weight: 700;
}

.heart-icon {
    color: #e25c88;
    display: inline-block;
    font-size: 20px;
}

.footer-contact {
    flex: 1;
}

.contact-subtitle {
    color: #e25c88;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 14px;
    color: #555555;
    margin-bottom: 25px;
    max-width: 320px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    color: #333333;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link:hover {
    color: #e25c88;
}

.btn-footer-whatsapp {
    background-color: #e25c88;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    width: max-content;
}

.btn-footer-whatsapp:hover {
    background-color: #cc4974;
}

.footer-image-area {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.footer-image-placeholder {
    width: 100%;
    max-width: 420px;
    height: 280px;
    border: 2px dashed #e25c88;
    background-color: rgba(226, 92, 136, 0.03);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e25c88;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* ==========================================
   9. RESPONSIVE (MOBİL & TABLET UYUMLULUK)
   ========================================== */
@media (max-width: 991px) {
    /* Menü Mobil */
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Banner Mobil */
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 30px auto;
    }
    .hero-features {
        display: inline-block;
        text-align: left;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image-placeholder {
        min-height: 300px;
    }

    /* Süreç (3 Adım) Mobil */
    .steps-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .step-arrow-placeholder {
        transform: rotate(90deg);
        padding-top: 0;
        margin: 0 auto;
    }

    /* Demo Albüm Mobil */
    .demo-album-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .demo-btn-wrapper {
        justify-content: center;
    }
    .curve-arrow-icon {
        display: none;
    }
    .gallery-grid-placeholder {
        height: 250px;
    }

    /* Paketler Mobil */
    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .price-card {
        width: 100%;
    }

    /* Sistem Özellikleri Mobil */
    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .feature-item {
        flex: unset;
        width: 40%;
    }

    /* Footer Mobil */
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 50px;
    }
    .contact-desc {
        margin: 0 auto 25px auto;
    }
    .contact-links {
        align-items: center;
    }
    .footer-image-area {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .feature-item {
        width: 100%;
    }
}