@charset "UTF-8";

/* =========================================
   EK�N H�KAYES� SAYFASI ST�LLER
   ========================================= */

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

.ekin-page-wrapper {
    position: relative;
    background-color: var(--bg-warm, #FAF7F2);
    color: var(--text-dark, #2E3330);
    padding: 70px 0 100px;
    overflow: hidden;
}

.container-custom {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- ARKA PLAN CANLI YAPRAK / FLORAL KENARLIKLAR --- */
.leaf-decoration {
    position: absolute;
    width: 320px;
    height: 320px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.12; /* �ok bo�ucu olmamas� i�in ��k bir transparanl�k */
    pointer-events: none;
    z-index: 1;
}

/* Sol �st K��e Canl� Yaprak Deseni */
.leaf-top-left {
    top: -50px;
    left: -60px;
    background-image: radial-gradient(circle, #3b7a57 10%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

/* Sa� Alt K��e Canl� Yaprak Deseni */
.leaf-bottom-right {
    bottom: 0;
    right: -60px;
    background-image: radial-gradient(circle, #2d8a63 15%, transparent 75%);
    border-radius: 50%;
    filter: blur(50px);
}

/* --- PARLAK YE��L VURGU RENG� --- */
.highlight-green {
    color: #1b6845;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(27, 104, 69, 0.2);
}

/* --- HERO B�L�M� (Ba�l�k ve Video) --- */
.ekin-hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.ekin-badge {
    display: inline-block;
    background-color: #EAF0EE;
    color: var(--btn-color, #21352F);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(55, 89, 80, 0.15);
}

.ekin-main-title {
    font-size: 2.5rem; /* Başlık boyutunuz */
    font-weight: 700;
    text-align: center;
    /* Metnin kendisi şeffaf olacak ki arkasındaki efekti görelim */
    color: transparent;
    /* Degradeyi metne uygulamak için gerekli özellikler */
    background-image: linear-gradient(135deg, #1a4d3a 0%, /* Koyu Yosun Yeşili */
    #2e7d32 45%, /* Canlı Orman Yeşili */
    #388e3c 50%, /* Orta Yeşil (Parlak nokta) */
    #2e7d32 55%, /* Tekrar Koyu Yeşil */
    #1a4d3a 100% /* Koyu Yeşil */
    );
    background-clip: text;
    -webkit-background-clip: text; /* Safari için */
    /* Logodaki gibi derinlikli ve yumuşak gölge efekti */
    filter: drop-shadow(0px 4px 2px rgba(26, 77, 58, 0.4)); /* Hafif, yumuşak bir temel gölge */
    /* Metnin etrafına logodaki altın/bej çerçeveyi andıran ince bir çizgi (stroke) ekleyelim */
    -webkit-text-stroke: 1px rgba(180, 160, 140, 0.5);
    margin: 0;
    padding: 20px;
    position: relative;
}

.ekin-lead-text {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--text-muted, #6B726F);
    margin: 0;
}

/* Video Kart� �er�evesi */
.ekin-video-card {
    display: flex;
    justify-content: center;
}

.video-frame {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(230, 220, 210, 0.7);
    background-color: #FAF7F2;
    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.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-frame:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 0 10px #FAF7F2, 0 0 0 11px rgba(220, 205, 190, 0.8), 0 25px 45px rgba(46, 51, 48, 0.1);
    }

.ekin-featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- ORTA ANLATIM BLOKLARI --- */
.ekin-story-section {
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 860px;
    margin: 0 auto;
}

.story-block h2.story-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    color: var(--btn-color, #21352F);
    margin-bottom: 16px;
    font-weight: 600;
}

.story-block p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #3b423f;
    margin-bottom: 18px;
}

/* Manifesto / Al�nt� Kutusu */
.ekin-manifesto-box {
    background-color: #F3EAE4;
    border-left: 4px solid #2d8a63;
    border-radius: 0 20px 20px 0;
    padding: 30px 36px;
    margin: 15px 0;
}

.manifesto-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark, #2E3330);
    margin: 0 !important;
}

/* --- ALT �A�RI (CTA) ALANI --- */
.ekin-cta-footer {
    text-align: center;
    margin-top: 75px;
    padding-top: 45px;
    border-top: 1px solid rgba(220, 205, 190, 0.5);
}

    .ekin-cta-footer p {
        font-size: 1.15rem;
        font-weight: 500;
        color: var(--text-dark, #2E3330);
        margin-bottom: 20px;
    }

/* =========================================
   MOB�L VE TABLET UYUMLULUK (RESPONSIVE)
   ========================================= */

@media (max-width: 991px) {
    .ekin-hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .ekin-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .video-frame {
        max-width: 320px;
        height: 380px;
        margin: 0 auto;
    }

    .video-frame {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .ekin-hero-section,
    .ekin-story-section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 990px) {
    .ekin-page-wrapper {
        padding: 40px 0 70px;
    }

    .ekin-main-title {
        font-size: 2.1rem;
    }

    .ekin-manifesto-box {
        padding: 22px 24px;
        border-radius: 16px;
    }

    .manifesto-text {
        font-size: 1.25rem;
    }

    .story-block p {
        font-size: 1.02rem;
    }
}
