/* --- TEMEL KURULUM ve DEĞİŞKENLER --- */
:root {
    /* Renk Paleti: Güven ve Huzur */
    --color-primary: #3A5A40;
    /* Koyu Orman Yeşili */
    --color-secondary: #588157;
    /* Sakin Yeşil */
    --color-accent: #A3B18A;
    /* Soluk Yeşil */
    --color-background: #FDFDFD;
    /* Çok Açık Kırık Beyaz */
    --color-text: #333333;
    /* Koyu Gri Metin */
    --color-light-text: #555555;
    /* Açık Gri Metin */

    /* Tipografi */
    --font-headings: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    /* Sayfa içi linklerde yumuşak kaydırma */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--color-primary);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--color-light-text);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* --- GENEL BUTON STİLLERİ --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

/* --- HEADER --- */

#main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    /* YENİ: Geçiş eklendi */
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* YAPIŞKAN HEADER STİLİ (Kritik Hata Düzeltmesi) */
#main-header.sticky {
    position: fixed;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}


.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    /* YENİ: Dikey hizalama için eklendi */
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* YENİ: Logo unvan stili */
.logo-subtitle {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-light-text);
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul li a {
    font-weight: 500;
    font-size: 1rem;
}

/* YENİ: Hamburger Menü Stilleri */
#hamburger-btn {
    display: none; /* Varsayılan olarak gizli, mobilde görünecek */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#hamburger-btn .line {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* YENİ: Mobil Navigasyon Stilleri */
#mobile-nav {
    position: fixed;
    top: 0;
    left: -100%; /* Başlangıçta ekranın dışında */
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#mobile-nav.is-active {
    left: 0; /* Aktif olduğunda ekrana gelir */
}

/* YENİ: Hamburger menü "X" (kapat) ikonuna dönüşme animasyonu */
#hamburger-btn.is-active .line-1 {
    transform: translateY(8px) rotate(45deg);
}
#hamburger-btn.is-active .line-2 {
    opacity: 0;
}
#hamburger-btn.is-active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-links a {
    font-family: var(--font-headings);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-nav-links .btn {
    font-size: 1.5rem;
    padding: 15px 35px;
}


/* --- HERO BÖLÜMÜ --- */
#hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #f7f9f5;
    /* Çok hafif yeşilimsi beyaz */
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* Hero İçerik Animasyonları (Typewriter için güncellendi) */
.hero-title {
    /* Yazı animasyonu sonrası yanıp sönen imleç için */
    position: relative;
}

.hero-title::after {
    content: '|';
    position: absolute;
    right: -15px;
    top: 0;
    font-weight: 300;
    color: var(--color-accent);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Diğer içeriklerin animasyonu */
.hero-subtitle,
.hero-buttons,
.hero-image,
.hero-greeting {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-subtitle,
.hero-buttons {
    transform: translateY(20px);
}

.hero-image {
    transform: scale(0.95);
}

body.is-loaded .hero-subtitle,
body.is-loaded .hero-buttons,
body.is-loaded .hero-image,
body.is-loaded .hero-greeting {
    opacity: 1;
    transform: none;
}

/* Gecikmeleri ayarla */
body.is-loaded .hero-subtitle {
    transition-delay: 0.2s;
}

body.is-loaded .hero-buttons {
    transition-delay: 0.4s;
}

body.is-loaded .hero-image {
    transition-delay: 0.2s;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    /* Resmi dairesel yapar */
    object-fit: cover;
    aspect-ratio: 1/1;
    /* 1'e 1 oranını korur */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* Aşağı Kaydırma İkonu */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    position: relative;
}

.mouse span {
    position: absolute;
    display: block;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Masaüstü menüyü gizle */
    }

    /* YENİ: Hamburger butonu göster */
    #hamburger-btn {
        display: flex; 
    }

    /* YENİ: Logo yazı boyutu mobilde küçültüldü */
    .logo a {
        font-size: 1.5rem;
    }
    .logo-subtitle {
        font-size: 0.7rem;
    }

    /* GÜNCELLENDİ: Hero bölümü mobil ayarı */
    #hero {
        height: auto; /* 100vh kaldırıldı, içerik sığsın */
        min-height: 90vh;
        padding-top: 120px; /* Header için boşluk */
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        /* YENİ: Ekstra padding kaldırıldı */
        padding-top: 0; 
    }

    .hero-image {
        grid-row: 1;
        /* Resmi yukarı al */
        margin-bottom: 30px;
    }

    /* GÜNCELLENDİ: Fotoğrafın fırlamasını ve kesilmesini engellemek için */
    .hero-image img {
        max-width: 280px; /* Fotoğraf küçültüldü */
        object-position: center 25%; /* Fotoğrafı biraz aşağı kaydırır (yüzü göstermek için) */
    }

    .hero-title {
        font-size: 2.2rem; /* Başlık mobilde küçültüldü */
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- BÖLÜM BAŞLIKLARI İÇİN GENEL STİL --- */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.1rem;
}

/* --- YAKLAŞIMIM BÖLÜMÜ (GELİŞMİŞ ANİMASYON) --- */
#yaklasimim {
    padding: 100px 0;
    background-color: var(--color-background);
}

.yaklasimim-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* YENİ: Logo Ortalama Stili (Sizin İsteğiniz) */
.approach-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.approach-logo {
    max-height: 80px;
    /* Logonun çok büyük olmasını engeller */
}


.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--color-accent);

    /* GÜNCELLENDİ: :hover animasyonu için (Sizin İsteğiniz) */
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    /* Başlangıçta tüm kartlar hafif soluk */
    opacity: 0.7;
    transform: scale(0.98);
}

/* GÜNCELLENDİ: Fare üzerine gelince aydınlanma (Sizin İsteğiniz) */
.step-card:hover {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* JavaScript tarafından eklenecek olan aktif kart stili KALDIRILDI */
/* .step-card.active { ... } */

.step-icon {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* --- GENEL SCROLL ANİMASYONU STİLLERİ --- */
[data-animation="fade-in-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
}

[data-animation="fade-in-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 992px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }

    /* GÜNCELLENDİ: Mobilde her zaman aydınlık (Sizin İsteğiniz) */
    .step-card {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- HİZMET ALANLARI BÖLÜMÜ --- */
#hizmetler {
    padding: 100px 0;
    background-color: #f7f9f5;
    /* Hafif yeşilimsi beyaz arka plan */
}

.hizmetler-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    /* GÜNCELLENDİ: Daha fazla kart için 3'lü grid (Sizin İsteğiniz) */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-background);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* YENİ: Kartın üst çizgisi için eklendi */
    border-top: 4px solid var(--color-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* YENİ: LGBTİ+ Kart Stili (Sizin İsteğiniz) */
.service-card.service-card-lgbt {
    /* Gökkuşağı renkleri için border-image kullanıyoruz */
    border-top-width: 4px;
    border-top-style: solid;
    border-image: linear-gradient(to right, #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787) 1;
    transition: all 0.3s ease;
}

.service-card.service-card-lgbt:hover {
    /* Vurguyu artırmak için */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 128, 38, 0.2);
}


.service-icon {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    background-color: #eaf0e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Paragrafın esneyerek linki en alta itmesini sağlar */
}

.service-link {
    font-weight: 600;
    color: var(--color-secondary);
    align-self: flex-start;
    /* Linkin kartın soluna yaslanmasını sağlar */
}

.service-link:hover {
    text-decoration: underline;
}

/* --- HAKKIMDA BÖLÜMÜ --- */
#hakkimda {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.hakkimda-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* YENİ: Arka plan resmi CSS'e taşındı */
    background-image: url('../images/hakkimda-bg.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -2;
}

/* Arka plan resmini karartarak metinlerin okunurluğunu artırıyoruz */
#hakkimda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 40, 0.8);
    /* Yeşil tonlarında koyu bir katman */
    z-index: -1;
}

.hakkimda-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Resim daha küçük, metin daha geniş */
    align-items: center;
    gap: 60px;
}

.hakkimda-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hakkimda-quote {
    font-family: var(--font-headings);
    font-style: italic;
    font-size: 1.3rem;
    margin: 20px 0 30px 0;
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
    color: #f0f0f0;
}

/* YENİ: Hakkımda bölümü unvan stili */
.hakkimda-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-top: -20px;
    margin-bottom: 25px;
}

/* YENİ: Hakkımda "Devamını Oku" stilleri */
.hakkimda-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}

.hakkimda-more-content.active {
    max-height: 1000px; /* İçeriğin sığacağı kadar büyük bir değer */
}

#read-more-about {
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

#read-more-about:hover {
    background-color: var(--color-accent);
    color: white;
}


.hakkimda-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.hakkimda-text p {
    color: #e0e0e0;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .hakkimda-container {
        grid-template-columns: 1fr;
    }
}

/* --- YAZILAR/BLOG BÖLÜMÜ --- */
#yazilar {
    padding: 100px 0;
    background-color: var(--color-background);
}

.yazilar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    /* Resimler için sabit oran */
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* İçeriğin kartın kalanını doldurmasını sağlar */
}

.blog-card .category {
    display: inline-block;
    padding: 5px 12px;
    background-color: #eaf0e9;
    /* Yeşil tonlu arka plan */
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: var(--color-text);
}

.blog-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--color-secondary);
    align-self: flex-start;
}

.read-more:hover {
    color: var(--color-primary);
}

.tumunu-gor-container {
    text-align: center;
}

/* --- SIKÇA SORULAN SORULAR (AKORDİYON) --- */
#faq {
    padding: 100px 0;
    background-color: var(--color-background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-accordion {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question span:first-child {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-answer {
    max-height: 0;
    /* Başlangıçta kapalı */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 0.95rem;
}

/* Aktif (açık) durum için stiller */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Cevabın sığacağı kadar bir yükseklik */
}

/* --- İLETİŞİM BÖLÜMÜ --- */
#iletisim {
    padding: 100px 0;
    background-color: #f7f9f5;
}

.iletisim-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info p {
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* YENİ: İKON STİLİ (Sizin İsteğiniz) */
.info-list li i {
    color: var(--color-primary);
    margin-right: 15px;
    font-size: 1.5rem;
    width: 25px;
    /* İkonların aynı hizada durması için */
    text-align: center;
}

/* YENİ: İletişim Butonları Stili */
.contact-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.contact-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}

.contact-btn i {
    margin-right: 10px;
}

/* WhatsApp ikonu için özel stil (Marka rengi) */
.contact-btn[href*="wa.me"] {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.contact-btn[href*="wa.me"]:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}


/* --- Mobil Uyumluluk --- */
@media (max-width: 992px) {
    .iletisim-container {
        grid-template-columns: 1fr;
    }
}

/* --- GELİŞMİŞ İMLEÇ EFEKTİ: DİNGİNLİK KÜRESİ --- */
#cursor-dot,
#cursor-orb {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    /* Merkezi imlece hizalar */
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    /* Tıklamaları engellemez */
    transition: transform 0.2s, opacity 0.3s, width 0.4s, height 0.4s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

#cursor-orb {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    opacity: 0.25;
}

/* Linklerin üzerine gelince büyüme efekti */
#cursor-orb.is-active {
    width: 60px;
    height: 60px;
    opacity: 0.15;
}

/* Mobil cihazlarda imleç efektlerini gizle */
@media (hover: none) or (max-width: 768px) {

    #cursor-dot,
    #cursor-orb {
        display: none;
    }
}

/* --- ARKA PLAN ANİMASYONU: SÜZÜLEN DAİRELER --- */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Hero içeriğinin arkasında ama arka plan renginin önünde olması için z-index ekliyoruz */
    /* Hero bölümünün z-index'i 1 olduğu için bu da 1 olabilir ama içeriğin üzerinde olmamalı. */
    /* Bu nedenle hero-container'a bir z-index vermemiz gerekecek. */
}

/* Hero içeriğinin, bu animasyonun üzerinde kalmasını sağlıyoruz */
.hero-container,
.scroll-down {
    position: relative;
    z-index: 2;
}


.floating-shapes li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    /* Dairelerin rengini, temamızdaki soluk yeşilden alıyoruz */
    background: rgba(163, 177, 138, 0.2);
    animation: animate-shapes 25s linear infinite;
    bottom: -150px;
    /* Ekranın altından başlamaları için */
}

/* Her bir daireye farklı boyut, pozisyon ve animasyon süresi vererek rastgele bir görünüm elde ediyoruz */
.floating-shapes li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-shapes li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.floating-shapes li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.floating-shapes li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.floating-shapes li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.floating-shapes li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.floating-shapes li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.floating-shapes li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.floating-shapes li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.floating-shapes li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

/* Animasyonun kendisi: Daireleri yukarı hareket ettirir ve döndürür */
@keyframes animate-shapes {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* --- CİLA ADIMI: ÖZELLEŞTİRİLMİŞ SCROLLBAR --- */

/* Firefox için temel renklendirme */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) #f1f1f1;
}

/* Chrome, Edge, Safari ve diğer Webkit tabanlı tarayıcılar için */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    /* Soluk yeşil rengimiz */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
    /* Üzerine gelince koyulaşan yeşil */
}

/* --- CİLA ADIMI: SÜZÜLEN WHATSAPP BUTONU --- */
#whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Standart WhatsApp Yeşili */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;

    /* Başlangıçta gizli ve aşağıda */
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;

    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s, background-color 0.3s ease;
}

/* YENİ: Arama Butonu Stili */
#phone-fab {
    position: fixed;
    bottom: 100px; /* WhatsApp butonunun üstünde */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary); /* Ana renk */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 998; /* WhatsApp'ın bir altında */
    color: white;
    font-size: 1.8rem;
    
    /* Başlangıçta gizli */
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s, background-color 0.3s ease;
}

/* YENİ: Font Awesome ikonu yerine resim için (Sizin İsteğiniz) */
#whatsapp-fab img {
    width: 32px;
    height: 32px;
    /* Dairenin tam ortasında olması için */
}


/* JavaScript ile eklenecek olan .visible class'ı */
#whatsapp-fab.visible,
#phone-fab.visible { /* YENİ: Phone fab da eklendi */
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#whatsapp-fab:hover {
    background-color: #128C7E;
    /* Koyu WhatsApp Yeşili */
    transform: scale(1.1);
    /* Üzerine gelince hafifçe büyür */
}

#phone-fab:hover {
    background-color: var(--color-secondary);
    transform: scale(1.1);
}

/* --- KAYNAKLAR BÖLÜMÜ --- */
#kaynaklar {
    padding: 100px 0;
    background-color: #f7f9f5;
    /* Hafif yeşilimsi arka plan */
}

.kaynaklar-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.downloadable-resources h3,
.recommended-articles h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
}

/* YENİ: İKON STİLİ (Sizin İsteğiniz) */
.downloadable-resources h3 i,
.recommended-articles h3 i {
    margin-right: 12px;
    font-size: 1.6rem;
    color: var(--color-primary);
}

.resource-card {
    background-color: var(--color-background);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.resource-card h4 {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.resource-card p {
    flex-basis: 65%;
    /* Metin %65'lik alanı kaplasın */
    margin-bottom: 0;
    padding-right: 15px;
    font-size: 0.9rem;
}

.resource-card .btn {
    flex-basis: 30%;
    /* Buton %30'luk alanı kaplasın */
    padding: 10px 20px;
    font-size: 0.9rem;
    text-align: center;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.article-list li a {
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 992px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .resource-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-card p {
        flex-basis: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .resource-card .btn {
        flex-basis: 100%;
        width: 100%;
    }
}

/* --- BÖLÜM SONU EYLEME ÇAĞRI (CTA) --- */
.cta-prompt {
    text-align: center;
    margin-top: 80px;
    /* Üstündeki içerikle arasına boşluk koyar */
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.cta-prompt h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-prompt p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* --- NEFES EGZERSİZİ BÖLÜMÜ --- */
#breathing-exercise {
    padding: 100px 0;
    background-color: #f7f9f5;
    /* Hafif yeşilimsi arka plan */
}

.breathing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.breathing-visualizer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breathing-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: 50%;

    /* Başlangıç durumu */
    transform: scale(0.8);
    opacity: 0.8;

    /* Animasyon için yumuşak geçiş */
    transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1), opacity 4s ease;
}

/* JavaScript tarafından eklenecek animasyon sınıfları */
.breathing-circle.is-inhaling {
    transform: scale(1.0);
    opacity: 1;
}

.breathing-circle.is-exhaling {
    transform: scale(0.6);
    opacity: 0.7;
}

#breathing-prompt {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#breathing-prompt.visible {
    opacity: 1;
}

/* --- SESLİ MEDİTASYON BÖLÜMÜ --- */
#meditation {
    padding: 100px 0;
    background-color: var(--color-background);
}

.meditation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.audio-player {
    background-color: white;
    padding: 20px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-button {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.player-button:hover {
    background-color: var(--color-secondary);
}

.player-button svg.hidden {
    display: none;
}

.time-display {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--color-light-text);
    min-width: 45px;
    text-align: center;
}

.progress-bar-container {
    flex-grow: 1;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar-background {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.progress-bar-current {
    position: absolute;
    height: 100%;
    width: 0;
    /* JS ile ayarlanacak */
    background-color: var(--color-accent);
    border-radius: 3px;
}

/* --- CİLA ADIMI: DİNAMİK KARŞILAMA MESAJI --- */
.hero-greeting {
    font-family: var(--font-headings);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    min-height: 28px;
    /* Metin yüklenene kadar boşluk bırakır */
}

/* --- YENİ: ÇEREZ BANNER'I STİLİ (Sizin İsteğiniz) --- */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 15px;

    /* Başlangıçta gizli */
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

#cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

#cookie-banner .btn {
    padding-top: 10px;
    padding-bottom: 10px;
    align-self: flex-start;
}

/* --- YENİ: FOOTER (ALT BİLGİ) STİLLERİ --- */
#footer {
    background-color: #2c4a34; /* Ana rengin bir ton koyusu */
    color: #e0e0e0;
    padding: 80px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 25px;
}

.footer-about .footer-subtitle {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-top: -20px;
    margin-bottom: 20px;
}

.footer-about .footer-copyright {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aab8a1;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social p {
    font-size: 0.95rem;
    color: #aab8a1;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: white;
    transform: scale(1.1);
}

.social-icons a img {
    width: 22px;
    height: 22px;
    /* Renkli ikon kullanırsanız bu satırı silin, beyaz ikon kullanırsanız kalsın */
    /* filter: brightness(0) invert(1); */ 
}

.social-icons a:hover img {
     filter: none; 
}

/* Footer Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        padding-left: 0;
    }

    .social-icons {
        justify-content: center;
    }

    /* Yüzen butonların çerez banner'ı ile çakışmasını engelle */
    #whatsapp-fab {
        bottom: 100px;
    }

    #phone-fab {
        bottom: 170px;
    }

    #cookie-banner.visible~#whatsapp-fab {
        bottom: 180px;
    }

    #cookie-banner.visible~#phone-fab {
        bottom: 250px;
    }
}


@media (max-width: 768px) {
    #cookie-banner {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 15px;
    }
}


