/* ===================================
   STORY PAGE STYLES
   =================================== */

/* ===================================
   Story Hero
   =================================== */
.story-hero {
    padding: 12rem 2rem 8rem;
    background: linear-gradient(135deg, var(--cafe-green-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.story-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
}

.story-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    color: var(--color-gray-600);
    font-style: italic;
}

/* ===================================
   Story Article
   =================================== */
.story-article {
    padding: 5rem 0;
}

.story-section {
    margin-bottom: 5rem;
}

/* Introduction */
.story-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-lead {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.8;
    color: var(--color-gray-700);
    font-weight: 300;
}

/* Story Blocks */
.story-block {
    margin: 8rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-block-reverse .story-grid {
    direction: rtl;
}

.story-block-reverse .story-text {
    direction: ltr;
}

.story-text {
    padding: 2rem 0;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-gray-900);
    line-height: 1.2;
}

.story-paragraph {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Quote Section */
.story-quote {
    max-width: 900px;
    margin: 8rem auto;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 10rem;
    color: var(--cafe-green-light);
    line-height: 1;
    z-index: -1;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gray-900);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1rem;
    color: var(--cafe-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Values Section */
.values-section {
    margin: 8rem 0;
    padding: 5rem 0;
    background-color: var(--color-gray-50);
    border-radius: 20px;
}

.values-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-gray-900);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.value-description {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Closing Section */
.story-closing {
    max-width: 800px;
    margin: 8rem auto 0;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--cafe-green-light) 0%, var(--color-white) 100%);
    border-radius: 20px;
}

.closing-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 2.5rem;
}

.story-closing .btn-primary {
    background-color: var(--cafe-green);
    color: var(--color-black);
}

.story-closing .btn-primary:hover {
    background-color: var(--cafe-green-dark);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .story-grid {
        gap: 3rem;
    }

    .story-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .story-hero {
        padding: 10rem 1.5rem 6rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-block-reverse .story-grid {
        direction: ltr;
    }

    .story-image {
        height: 350px;
    }

    .story-block {
        margin: 5rem 0;
    }

    .story-quote {
        margin: 5rem auto;
        padding: 3rem 1.5rem;
    }

    .values-section {
        margin: 5rem 0;
        padding: 3rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-closing {
        margin: 5rem auto 0;
        padding: 3rem 1.5rem;
    }
}
/* ===============================
   Site Logo (Fixed Top-Left)
   =============================== */
.site-logo {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-logo {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 12px;   /* Daire yerine soft köşe */
}

.site-logo img {
    width: 300px;               /* Biraz büyüt – okunurluk artar */
    height: auto;
    display: block;
}

/* Hover – Işık efekti (PNG’ye zarar vermez) */
.site-logo:hover img {
    filter: drop-shadow(0 0 6px rgba(180, 226, 197, 0.9))
            drop-shadow(0 0 14px rgba(180, 226, 197, 0.6));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .site-logo {
        width: 56px;
        height: 56px;
        top: 1rem;
        left: 1rem;
    }

    .site-logo img {
        width: 32px;
    }
}