:root {
    --primary: #5e300a;       /* Dark Brown */
    --primary-light: #7a4216;
    --secondary: #7ea436;     /* Leaf Green */
    --accent: #c1ff72;        /* Bright Lime */
    --olive: #95a800;         /* Olive Green */
    --background: #f4f7e6;    /* Light Sage/Cream */
    --text-main: #5e300a;
    --text-muted: #7a4216;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.6);
    --shadow: 0 10px 30px rgba(94, 48, 10, 0.08);
    --gradient: linear-gradient(135deg, #f4f7e6 0%, #e1ebba 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: lowercase !important; /* Force absolute lowercase everywhere */
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    background: var(--gradient);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

.text-gradient {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--accent); /* Matches the "yeşili" look in the image */
    text-shadow: 0 2px 10px rgba(193, 255, 114, 0.4);
}

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

/* Header & Nav */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(249, 247, 242, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    text-decoration: none;
}

.logo-icon { font-size: 32px; }
.logo-img { height: 44px; width: auto; border-radius: 8px; }
.logo-text { color: var(--primary); font-size: 28px; font-weight: 800; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover {
    background-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 48, 10, 0.1);
}

.btn-large {
    padding: 16px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-sub { font-size: 10px; opacity: 0.8; }
.btn-main { font-size: 18px; }

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    border-color: #ccc;
    color: #999;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 0;
    gap: 60px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Hero Newsletter (Compact) */
.hero-newsletter {
    margin-top: 40px;
    padding: 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 480px;
}

.hero-newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: left;
}

.newsletter-form-compact {
    display: flex;
    gap: 10px;
}

.news-input-compact {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-size: 14px;
    outline: none;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.news-success-compact {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

/* Mockup & Floating Cards */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    min-height: 640px;
}

/* Premium Phone Frame */
.phone-frame {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #1a1a1a;
    position: relative;
    box-shadow: 0 40px 80px rgba(94, 48, 10, 0.2);
    overflow: hidden;
    transform: rotate(-3deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 50px 100px rgba(94, 48, 10, 0.25);
}

/* Dynamic Island / Notch */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

/* Screen Slider */
.screen-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-slide {
    min-width: 100%;
    height: 100%;
}

.screen-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 20px;
    border-radius: 10px;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
    white-space: nowrap;
}

.card-1 { top: 10%; right: -80px; animation-delay: 0s; }
.card-2 { bottom: 30%; left: -90px; animation-delay: 2s; }
.card-3 { bottom: 10%; right: -90px; animation-delay: 4s; }

.card-icon { font-size: 24px; }
.card-text { display: flex; flex-direction: column; }
.card-text strong { font-size: 14px; color: var(--primary); }
.card-text span { font-size: 12px; color: var(--text-muted); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 48px;
    border-radius: 30px;
    transition: transform 0.3s;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}

/* Blog Section */
.blog { padding: 100px 0; }

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

.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.blog-card:hover { transform: translateY(-10px); }

.blog-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

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

.blog-1 { background-image: url('blog-1.png'); }
.blog-2 { background-image: url('blog-2.png'); }
.blog-3 { background-image: url('blog-3.png'); }

.blog-card-content { padding: 24px; }

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.text-accent {
    color: var(--secondary) !important;
    font-weight: 800;
}

/* Blog Styles Refinement */
.blog {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s;
}

.blog-link:hover { transform: translateX(5px); }

/* Blog Detail Page */
.blog-post-page {
    padding-bottom: 100px;
}

.blog-hero {
    height: 60vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.blog-hero .blog-tag {
    background: var(--secondary);
    color: var(--white);
}

.blog-hero h1 {
    font-size: 56px;
    margin-top: 20px;
}

.blog-article {
    max-width: 800px;
    margin: -60px auto 0;
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 20;
}

.blog-content h2 {
    color: var(--primary);
    margin: 40px 0 20px;
    font-size: 28px;
}

.blog-content p {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.blog-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 17px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

/* Story Section */
.story {
    padding: 120px 0;
}

.story-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-content {
    padding: 80px;
}

.story-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--accent);
    border-radius: 20px;
    width: fit-content;
}

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

.sig-text strong { color: var(--primary); }
.sig-text span { font-size: 14px; color: var(--text-muted); }

.story-visual {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.story-image-placeholder {
    width: 100%;
    height: 100%;
    background: url('hero-plant.png') center/cover;
    opacity: 0.6;
    filter: grayscale(20%);
}

/* Privacy Page Card Styles */
.privacy-card {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-card h1 { color: var(--primary); margin-bottom: 8px; }
.privacy-card h2 { color: var(--primary); font-size: 24px; margin-bottom: 12px; }
.privacy-card p { color: var(--text-muted); line-height: 1.8; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: 20px;
    gap: 4px;
}

.lang-btn {
    border: none;
    background: none;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand-center p {
    margin-top: 16px;
    color: var(--text-muted);
    max-width: 400px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--secondary);
}

.social-icon {
    height: 24px;
    width: 24px;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s;
}

.social-link:hover .social-icon {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.link-group h4 {
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.link-group.left { text-align: left; }
.link-group.right { text-align: right; }

.link-group a:hover { color: var(--secondary); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title { 
        font-size: 32px; 
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 12px;
        padding: 0 10px;
    }

    .btn-large {
        flex: 1;
        max-width: 160px;
        padding: 12px 10px;
        align-items: center;
        text-align: center;
        min-height: 80px;
        justify-content: center;
    }

    .btn-main { font-size: 14px; }
    .btn-sub { font-size: 9px; }
    
    .hero-visual {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .mockup-container {
        width: 220px;
        height: 440px;
    }
    
    .floating-card { 
        display: flex; 
        padding: 6px 10px;
        border-radius: 10px;
        transform: scale(0.75);
    }
    
    .card-1 { top: 5%; right: -20px; }
    .card-2 { bottom: 25%; left: -30px; }
    .card-3 { bottom: 5%; right: -30px; }

    .card-icon { font-size: 16px; }
    .card-text strong { font-size: 10px; }
    .card-text span { font-size: 8px; }
    
    .feature-grid { 
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }
    
    .blog-grid { 
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }

    .story-card { 
        grid-template-columns: 1fr; 
        margin: 0 10px;
    }

    .section-header {
        padding: 0 20px;
    }

    .hero-subtitle {
        padding: 0 24px;
        margin-bottom: 30px;
    }

    .lang-switcher {
        position: absolute;
        top: 24px;
        right: 16px;
        z-index: 1001;
        scale: 0.9;
    }
    
    .logo {
        padding-left: 0px;
        margin-right: auto;
    }
    .story-content { padding: 40px; }
    .story-visual { height: 250px; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .link-group.left, .link-group.right { text-align: center; }

    /* Blog Post Page Mobile */
    .blog-hero h1 { font-size: 32px; }
    .blog-article {
        margin: -40px 20px 0;
        padding: 40px 24px;
    }
    .blog-content p { font-size: 16px; }
    .blog-content h2 { font-size: 24px; }
}

@media (max-width: 600px) {
    .nav-links {
        display: none; /* Hide complex nav on very small screens, or we can stack them */
    }
    
    .header .container {
        justify-content: center;
    }

    .hero-newsletter {
        padding: 20px;
        width: 100%;
    }

    .newsletter-form-compact {
        flex-direction: column;
    }

    .news-input-compact {
        width: 100%;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Leaf Rain Animation */
.leaf-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--secondary);
    border-radius: 2px 10px;
    opacity: 0.8;
    animation: leaf-fall linear forwards;
}

@keyframes leaf-fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* Force Blog Visibility */
#blog {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-card h3 {
    color: var(--primary) !important;
    font-size: 24px;
    margin: 12px 0;
}

/* Coming Soon Leaf Notification */
.leaf-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(126, 164, 54, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(250%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    border: 1px solid rgba(126, 164, 54, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.leaf-toast.show {
    transform: translateX(0);
}

.leaf-toast .leaf-icon {
    font-size: 24px;
    animation: leaf-sway 2s ease-in-out infinite;
}

@keyframes leaf-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}
