:root {
    --bg-warm: #FAF7F2;
    --text-dark: #2E3330;
    --text-muted: #6B726F;
    --btn-color: #21352F;
    --card-pink: #FCE8E6;
    --card-sand: #EAF0EE;
    --card-mint: #E1EFEA;
    --card-rose: #F9E5E2;
    --card-sage: #DCEBE7;
}

body {
    background-color: var(--bg-warm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}


.section-title-wrapper {
    text-align: center; /* Yazıyı ortalar */
    display: flex;
    flex-direction: column;
    align-items: center; /* Altındaki çizginin de tam ortada durmasını sağlar */
}

/* Ortak Buton */
.btn-primary-pill {
    display: inline-block;
    background-color: var(--btn-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

    .btn-primary-pill:hover {
        color: #fff;
        opacity: 0.9;
    }

/* Ortak Konteyner Akışkanlığı */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. HERO SECTION */
.hero-section {
    padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 4vw, 50px);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 50px);
}

.hero-content {
    flex: 1;
    max-width: 520px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    /* Ekran küçüldükçe akışkan küçülür, taşma yapmaz */
    font-size: clamp(2.1rem, 4.5vw + 0.5rem, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: clamp(0.95rem, 1vw + 0.2rem, 1.05rem);
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.signature-block {
    margin-bottom: 30px;
}

.script-name {
    display: block;
    font-family: 'Alex Brush', cursive;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--text-dark);
}

.sub-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Zarif Çerçeve */
.blob-shape {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4 / 5;
    position: relative;
    border: 1px solid rgba(230, 220, 210, 0.6);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 0 10px #FAF7F2, 0 0 0 11px rgba(220, 205, 190, 0.5), 0 20px 40px rgba(0, 0, 0, 0.04);
}

    .blob-shape::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: inset 0 0 25px 8px #FAF7F2;
        pointer-events: none;
    }

    .blob-shape:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 42px rgba(46, 51, 48, 0.12);
    }

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 20%;
    display: block;
}

/* 2. ÇALIŞMA ALANLARI */
.services-section {
    background-color: #F4EFEB;
    padding: clamp(50px, 6vw, 70px) 0;
    border-radius: 50px 50px 0 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.title-line {
    width: 45px;
    height: 2px;
    background-color: var(--text-muted);
    margin-bottom: 35px;
}

/* Akışkan Grid: Mobilde esnekçe küçülür/alt alta geçer */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.service-card {
    text-align: center;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4A5550;
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon-box {
    transform: translateY(-4px);
}

.icon-pink {
    background-color: var(--card-pink);
}

.icon-sand {
    background-color: var(--card-sand);
}

.icon-mint {
    background-color: var(--card-mint);
}

.icon-rose {
    background-color: var(--card-rose);
}

.icon-sage {
    background-color: var(--card-sage);
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

    .service-card h3 a {
        color: var(--text-dark);
        text-decoration: none;
        display: inline-block;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .service-card h3 a:hover {
            color: var(--btn-color);
            text-decoration: none;
            transform: translateY(-1px);
        }

/* 3. HAKKIMDA */
.about-section {
    padding: clamp(50px, 7vw, 80px) 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 50px);
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-image-wrapper {
    flex: 1;
}

.about-img {
    width: 100%;
    max-height: 380px;
    border-radius: 24px;
    object-fit: cover;
}

/* 4. ALINTI BANNER */
.quote-section {
    padding: 30px 0 70px;
    display: flex;
    justify-content: center;
}

.quote-bubble {
    background-color: #F3EAE4;
    padding: clamp(30px, 4vw, 40px) clamp(25px, 5vw, 60px);
    border-radius: 40px;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: var(--text-dark);
    margin: 0;
}

/* --- DUYARLI KIRILMA NOKTASI (Sadece Yönlendirme İçin) --- */
@media (max-width: 992px) {
    .hero-container,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .title-line {
        margin: 0 auto 35px;
    }

    .signature-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
