/* ===================================
   HOME PAGE STYLES
   =================================== */

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: parallaxZoom 20s ease-in-out infinite alternate;
}

@keyframes parallaxZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%);
}
kj
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff; /* aliceblue yerine tam beyaz daha net durur */
    
    /* ESKİ: text-shadow: 2px 4px 12px rgb(255, 255, 255); */
    /* YENİ: Gölgeyi siyaha çekip şeffaflık verdik */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
    
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #ffffff;
    
    /* ESKİ: text-shadow: 1px 2px 8px rgb(255, 255, 255); */
    /* YENİ: Daha hafif bir gölge */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--cafe-green);
    color: var(--color-black);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(180, 226, 197, 0.3);
}

.btn-primary:hover {
    background-color: var(--cafe-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(180, 226, 197, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid white;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-black);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===================================
   Featured Section
   =================================== */
.featured-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.feature-text {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cafe-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.feature-link:hover {
    color: var(--cafe-green-dark);
    gap: 0.75rem;
}

.feature-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cafe-green-light) 0%, var(--cafe-green) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-gray-900);
}

.cta-text {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background-color: var(--color-gray-900);
    color: white;
}

.cta-section .btn-primary:hover {
    background-color: var(--color-black);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .featured-section {
        padding: 4rem 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .scroll-indicator {
        display: none;
    }
}
/* ===============================
   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: 70%;
    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.527);
    padding: 8px;
    border-radius: 20%;   /* 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;
    }
}
