@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Base Colors */
    --color-bg: #FFF6EA;         /* Off-white/Cream */
    --color-surface: rgba(255, 246, 234, 0.85); /* Glassy cream */
    
    /* Text Colors */
    --color-text: #5C7444;       /* Forest Green for readable text */
    --color-text-light: #9FB283; /* Sage Green for secondary text */
    --color-heading: #5C7444;    /* Forest Green for headings */
    
    /* Brand / Accents */
    --color-primary: #9D7070;    /* Dark Mauve */
    --color-primary-dark: #5C7444; /* Forest Green for hover states */
    --color-secondary: #9FB283;  /* Sage Green */
    --color-accent: #DFB2B3;     /* Light Pink */
    --color-yellow: #DAC8AD;     /* Beige */
    --color-green-light: #F8D8D8; /* Pastel Pink */
    
    /* Blob Colors for Animation */
    --color-blob-1: #F8D8D8;     /* Pastel pink */
    --color-blob-2: #DAC8AD;     /* Beige */
    --color-blob-3: #9FB283;     /* Sage green */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* Solid Background for readability */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Interactive Background Elements */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.interactive-bg .shape {
    position: absolute;
    opacity: 0.12; /* Increased visibility */
    will-change: transform, rotate, scale, translate;
    transition: translate 0.1s linear;
    animation: floatShape 15s infinite ease-in-out alternate;
}

@keyframes floatShape {
    0% { transform: translate(0px, 0px); rotate: 0deg; scale: 1; }
    33% { transform: translate(30px, -40px); rotate: 15deg; scale: 1.15; }
    66% { transform: translate(-25px, 35px); rotate: -15deg; scale: 0.9; }
    100% { transform: translate(0px, 0px); rotate: 0deg; scale: 1; }
}

/* Individual colors for a lively, fruit/diet theme */
.interactive-bg .shape-1 { top: 15%; left: 10%; font-size: 6rem; animation-duration: 14s; animation-delay: -2s; color: #8DC63F; } /* Leaf: Green */
.interactive-bg .shape-2 { top: 65%; left: 85%; font-size: 8rem; animation-duration: 18s; animation-delay: -5s; color: #E74C3C; } /* Apple: Red */
.interactive-bg .shape-3 { top: 40%; left: 5%; font-size: 4rem; animation-duration: 16s; animation-delay: -1s; color: #3498DB; } /* Droplet: Blue */
.interactive-bg .shape-4 { top: 15%; left: 80%; font-size: 5rem; animation-duration: 13s; animation-delay: -8s; color: #E74C3C; } /* Heart: Red */
.interactive-bg .shape-5 { top: 80%; left: 15%; font-size: 7rem; animation-duration: 19s; animation-delay: -3s; color: #F1C40F; } /* Lemon: Yellow */
.interactive-bg .shape-6 { top: 25%; left: 50%; font-size: 4.5rem; animation-duration: 15s; animation-delay: -6s; color: #E67E22; } /* Carrot: Orange */
.interactive-bg .shape-7 { top: 75%; left: 55%; font-size: 6.5rem; animation-duration: 12s; animation-delay: -4s; color: #2ECC71; } /* Seedling: Green */
.interactive-bg .shape-8 { top: 5%; left: 40%; font-size: 5.5rem; animation-duration: 17s; animation-delay: -7s; color: #8E44AD; } /* Bowl: Purple */
.interactive-bg .shape-9 { top: 50%; left: 75%; font-size: 4.5rem; animation-duration: 21s; animation-delay: -2s; color: #27AE60; } /* Seedling: Dark Green */
.interactive-bg .shape-10 { top: 90%; left: 45%; font-size: 5rem; animation-duration: 16s; animation-delay: -9s; color: #C0392B; } /* Apple: Dark Red */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   PREMIUM NAVBAR
   ========================================== */
.navbar {
    padding: 0;
    /* Light Glassmorphism */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* Floating Pill Design */
    position: fixed;
    width: 90%;
    max-width: 1200px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    z-index: 1000;
    
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(92, 116, 68, 0.08);
    
    /* Entrance Animation */
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    
    transition: top 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
}

.navbar.nav-hidden {
    top: -120px;
    box-shadow: none;
}

@keyframes navSlideDown {
    0% { transform: translate(-50%, -100%); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 1rem;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-heading);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon-wrap {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #C58C8E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(157, 112, 112, 0.35);
}

.logo-icon-wrap i {
    color: white;
    font-size: 1.1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Elegant pill hover animation */
.nav-links a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(157, 112, 112, 0.08); /* Light Mauve */
    border-radius: 50px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

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

.nav-links a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-links a.active {
    color: var(--color-primary) !important;
    background: rgba(157, 112, 112, 0.1);
}

/* CTA Button */
.nav-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #C58C8E 100%) !important;
    color: white !important;
    padding: 0.6rem 1.6rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    box-shadow: 0 6px 15px rgba(157, 112, 112, 0.3) !important;
    margin-left: 0.5rem;
}

.nav-links a.nav-btn::before {
    display: none; /* Disable standard hover for button */
}

.nav-links a.nav-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 25px rgba(157, 112, 112, 0.4) !important;
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #9D7070 100%);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(157, 112, 112, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(157, 112, 112, 0.4);
}

/* Hero Section (Premium Updates) */
.hero {
    padding: 10rem 0 6rem;
    min-height: auto;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(157, 112, 112, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(157, 112, 112, 0.2);
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--color-primary);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-green-light);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.8;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    transition: transform 0.7s ease;
}

.hero-image:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(92, 116, 68, 0.5); /* Soft teal border */
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    top: -20px;
    right: -20px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image:hover .image-decor {
    transform: translate(25px, 25px);
    border-color: var(--color-primary);
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(92, 116, 68, 0.05); /* Soft blue shadow */
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.experience-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(92, 116, 68, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
    font-size: 1.05rem;
    color: var(--color-primary);
}


/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(157, 112, 112, 0.15); /* Primary colored shadow on hover */
    border-color: rgba(255, 255, 255, 0.9);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

.expertise-card:hover i {
    transform: rotateY(180deg) scale(1.1);
}

.expertise-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

/* Contact/Q&A Section */
.contact-section {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: white;
    text-align: center;
    border-radius: 30px;
    padding: 5rem 2rem;
    margin: 4rem 2rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================
   PREMIUM FOOTER
   ========================================== */
.footer {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem 2rem 1rem;
    margin: 4rem auto 2rem;
    width: 95%;
    max-width: 1200px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(92, 116, 68, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    display: inline-flex;
    color: var(--color-heading);
}

.footer-brand p {
    color: var(--color-text);
    margin: 1.2rem 0 2rem;
    line-height: 1.75;
    font-size: 0.95rem;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(157, 112, 112, 0.08);
    color: var(--color-primary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 112, 112, 0.15);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(157, 112, 112, 0.35);
}

.footer-links,
.footer-contact {
    position: relative;
    z-index: 2;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.8rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    transform: scale(0);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-contact p {
    color: var(--color-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-contact p:hover {
    color: var(--color-primary);
}

.footer-contact i {
    width: 32px;
    height: 32px;
    background: rgba(157, 112, 112, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid rgba(157, 112, 112, 0.15);
}

.footer-bottom {
    text-align: center;
    padding: 1.8rem 2rem 0;
    border-top: 1px solid rgba(92, 116, 68, 0.1);
    color: var(--color-text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 992px) {
    .hero-container, .about-container {
        flex-direction: column !important;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }

    /* Navbar Adjustments */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 3rem;
    }
    
    .footer-brand {
        margin: 0;
    }
    
    .footer-divider {
        margin: 0 0 1.5rem 0;
    }

    .social-links {
        justify-content: flex-start;
    }
    
    /* Elegant 1-column list for links */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .footer-links h4, .footer-contact h4 {
        margin-bottom: 1.2rem;
    }
    
    .footer-links a {
        padding: 1rem 0;
        margin: 0;
        border-bottom: 1px solid rgba(157, 112, 112, 0.1);
        width: 100%;
        justify-content: space-between;
        align-items: center;
        font-size: 1.05rem;
    }
    
    .footer-links a:last-child {
        border-bottom: none;
    }
    
    .footer-links a::before {
        display: none !important;
    }
    
    .footer-links a::after {
        content: '\f054';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 0.8rem;
        color: var(--color-primary);
        opacity: 0.5;
    }
    
    .footer-contact p {
        background: rgba(157, 112, 112, 0.04);
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .footer-contact i {
        background: white;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
    }
}
.btn-secondary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 112, 112, 0.2);
}

.read-more {
    color: var(--color-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}


/* Soft Loading Animations for Subpages */
.page-header {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}
.blog-content, .faq-content, .contact-content {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* ==========================================
   RECIPES (ZİNDE MUTFAK)
   ========================================== */
.recipe-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(157, 112, 112, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--color-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(157, 112, 112, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 112, 112, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #C58C8E 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(157, 112, 112, 0.3);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.recipe-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(92, 116, 68, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(157, 112, 112, 0.15);
}

.recipe-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-img img {
    transform: scale(1.08);
}

.recipe-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.recipe-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.recipe-meta i {
    color: #9D7070;
    margin-right: 0.3rem;
}

.recipe-title {
    font-size: 1.4rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 800;
}

.recipe-excerpt {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.recipe-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.recipe-link i {
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-link {
    color: #9D7070;
}

.recipe-card:hover .recipe-link i {
    transform: translateX(5px);
}

/* ==========================================
   BLOG DETAY SAYFASI
   ========================================== */
.blog-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.blog-hero-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.blog-hero-meta {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-container {
    max-width: 800px;
    margin: -4rem auto 4rem;
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.article-content p {
    margin-bottom: 1.8rem;
}

.article-content h3 {
    font-size: 1.8rem;
    color: var(--color-heading);
    margin: 2.5rem 0 1.2rem;
    font-family: 'Outfit', sans-serif;
}

.article-quote {
    background: rgba(157, 112, 112, 0.05);
    border-left: 5px solid var(--color-primary);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 20px 20px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-primary-dark);
    line-height: 1.6;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 0.5rem;
    color: var(--color-heading);
    font-size: 1.3rem;
}

.author-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .blog-hero-title { font-size: 2.2rem; }
    .article-container { padding: 2rem; margin: -2rem 15px 3rem; }
    .author-box { flex-direction: column; text-align: center; }
}

/* ==========================================
   BLOG KARTLARI (blog.html ve index.html)
   ========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.blog-img {
    height: 200px;
    background-color: #ddd;
    position: relative;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}
.blog-title {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.blog-excerpt {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}


/* --- Premium CTA Component --- */
.premium-cta-box {
    position: relative;
    border-radius: 40px;
    padding: 5rem 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-heading) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-shadow: 0 30px 60px rgba(92, 116, 68, 0.2);
    isolation: isolate;
    /* Fix for iOS Safari border-radius overflow bug */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.premium-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: url('https://www.transparenttextures.com/patterns/noise-pattern-with-subtle-cross-lines.png');
    opacity: 0.15;
    z-index: -1;
}
.premium-cta-box .blob-1 {
    position: absolute;
    top: -30%; left: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.12);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
}
.premium-cta-box .blob-2 {
    position: absolute;
    bottom: -30%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(157, 112, 112, 0.35);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
}
.premium-cta-content {
    flex: 1;
    max-width: 600px;
    color: white;
}
.premium-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.premium-cta-badge i {
    color: #4ade80;
}
.premium-cta-content h2 {
    font-size: 3.2rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: white;
}
.premium-cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 0;
}
.premium-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 260px;
}
.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-btn-primary {
    background: white;
    color: var(--color-heading);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.premium-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    color: var(--color-primary);
}
.premium-btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.premium-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
    .premium-cta-box {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
        gap: 3rem;
        border-radius: 30px;
    }
    .premium-cta-content h2 { font-size: 2.4rem; }
    .premium-cta-actions { width: 100%; min-width: auto; }
}

/* ==========================================
   MOBILE SWIPE SLIDERS
   ========================================== */
@media (max-width: 768px) {
    /* 2x2 Grid for Expertise on Mobile */
    .expertise-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
        padding-bottom: 0;
    }
    
    .expertise-card {
        padding: 1.2rem 0.8rem !important;
        border-radius: 15px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .expertise-card h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .expertise-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .expertise-card i {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    /* Keep Blog Grid as Horizontal Slider */
    .blog-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1.2rem;
        padding-right: 2rem; /* Allow space to swipe past last item */
    }
    .blog-grid::-webkit-scrollbar {
        display: none;
    }
    .blog-card {
        flex: 0 0 78vw;
        scroll-snap-align: start; /* Start alignment makes peeking better */
    }
    .blog-img {
        height: 160px !important;
    }
    .blog-content {
        padding: 1.25rem !important;
    }
    .blog-title {
        font-size: 1.05rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.3 !important;
    }
    .blog-excerpt {
        font-size: 0.85rem !important;
        margin-bottom: 1.2rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


/* ==========================================
   MOBILE NAVBAR & HAMBURGER MENU
   ========================================== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--color-heading);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; /* Above the nav links */
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Full screen menu */
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-links.nav-active {
        transform: translateY(0);
    }
    
    /* Make navbar full width on mobile to avoid top gap/white line */
    .navbar {
        width: 100%;
        top: 0;
        left: 0;
        transform: translateY(0) !important; /* Override desktop translation */
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 0.8rem 1.5rem;
        animation: navSlideDownMobile 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes navSlideDownMobile {
        0% { transform: translateY(-100%); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }
    
    .logo-text { font-size: 1.1rem; }
    .logo-text span { font-size: 0.7rem; }
    .logo-icon-wrap { width: 32px; height: 32px; font-size: 0.9rem; }
    
    /* Optimize Typography & Padding for Mobile */
    .hero { padding: 9rem 0 4rem !important; }
    .hero h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-container { flex-direction: column; text-align: center; gap: 3rem; }
    .section-title h2 { font-size: 2rem; }
    
    section { padding: 4rem 0 !important; }
    .cta-banner { padding: 3rem 1.5rem !important; margin: 0 !important; }
    .footer { margin: 2rem auto 1rem !important; padding: 3rem 1.5rem 1rem !important; }
    
    .about-container { padding: 2rem 1rem !important; width: 100%; box-sizing: border-box; }
    .about-text { width: 100%; }
    .about-text p { text-align: left !important; font-size: 1rem; line-height: 1.6; }
    .about-text h3 { font-size: 1.8rem !important; }

}
