:root {
    --primary-bg: #FCF9F2;
    --secondary-bg: #E9F5EB;
    --accent-bg: #1B3022;
    --cta-color: #E67E22;
    --cta-text: #FFFFFF;
    --text-main: #1B3022;
    --text-secondary-light: #556B2F;
    --text-secondary-dark: #D1D5DB;
    --text-light: #FCF9F2;
    --border-radius: 12px;
    --container-width: 1200px;
    --section-padding: clamp(3rem, 10vh, 6rem);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--primary-bg);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    body {
        font-size: 15px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    opacity: 0.8;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button,
.btn {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

button:hover,
.btn:hover {
    transform: scale(1.02);
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

input[type="checkbox"] {
    cursor: pointer;
}

#cookieConsentModal input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
}

/* ===== header ===== */
#site-header {
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: #FCF9F2;
    z-index: 2000;
    display: none !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex !important;
    opacity: 1;
}

.js-scroll-link {
    transition: color 0.2s ease, transform 0.2s ease;
}

.js-scroll-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    #site-header span {
        font-size: 0.8rem;
    }
}

/* ===== hero_section ===== */
#hero {
    background-image: url("assets/uploads/organik-kabak-cekirdegi.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 48, 34, 0.65);
    z-index: 1;
}

.hero-title {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
    hyphens: auto;
    font-size: 3.5rem;
}

.hero-subtitle {
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
    max-width: 700px;
    hyphens: auto;
    font-size: 1.5rem;
}

.btn-primary-custom {
    background-color: var(--cta-color);
    color: var(--cta-text);
    border: 2px solid var(--cta-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background-color: var(--text-light);
    color: var(--text-main);
}

.ph {
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.125rem !important;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        gap: 1rem;
    }
}

/* ===== about_info ===== */
#about {
    overflow: hidden;
}

#about h2 {
    font-size: calc(1.125rem + 1.5vw);
    hyphens: auto;
}

#about .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

#about p {
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 767px) {
    #about h2 {
        font-size: 1.125rem !important;
        line-height: 1.2;
    }

    #about p {
        font-size: 0.875rem;
    }

    #about .img-fluid {
        height: 300px !important;
    }
}

/* ===== features_cards ===== */
#features h3 {
    font-size: 1rem;
    line-height: 1.2;
    hyphens: auto
}

#features h4 {
    font-size: 0.875rem;
    line-height: 1.3;
    color: var(--text-secondary-light)
}

#features p {
    margin-bottom: 1rem;
    hyphens: auto
}

#features .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(27, 48, 34, 0.05)
}

#features .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important
}

@media(max-width:767px) {
    #features h3 {
        font-size: 1rem
    }

    #features h4 {
        font-size: 0.875rem
    }

    #features p {
        font-size: 0.85rem
    }
}

/* ===== benefits_grid ===== */
#benefits h2 {
    font-size: 1.5rem !important;
}

#benefits h3 {
    font-size: 1rem !important;
}

@media (min-width: 768px) {
    #benefits h2 {
        font-size: 2.5rem !important;
    }

    #benefits h3 {
        font-size: 1.25rem !important;
    }
}

#benefits .rounded-4 {
    border-radius: 1.5rem !important;
}

#benefits i {
    line-height: 1;
}

/* ===== deep_dive ===== */
#deep-benefits article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    hyphens: auto;
}

#deep-benefits article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(27, 48, 34, 0.1);
}

#deep-benefits h2 {
    font-size: 1.75rem;
}

#deep-benefits h3 {
    color: var(--accent-bg);
}

#deep-benefits h4 {
    color: var(--cta-color);
    margin-top: 1.5rem;
}

#deep-benefits p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    #deep-benefits {
        padding: 40px 0;
    }

    #deep-benefits h2 {
        font-size: 1rem !important;
    }

    #deep-benefits h3 {
        font-size: 0.875rem !important;
    }

    #deep-benefits h4 {
        font-size: 0.8rem !important;
    }

    #deep-benefits p {
        font-size: 0.75rem !important;
        line-height: 1.3;
    }
}

/* ===== audience_section ===== */
#audience h2 {
    font-size: 1.5rem;
    text-transform: none;
}

#audience h3 {
    font-size: 1.1rem;
}

#audience .audience-card-text {
    hyphens: auto;
}

@media (max-width: 768px) {
    #audience {
        padding: 2.5rem 0;
    }

    #audience h2 {
        font-size: 1rem !important;
    }

    #audience h3 {
        font-size: 0.875rem !important;
    }

    #audience .audience-card-text {
        font-size: 0.8rem !important;
    }
}

#audience .js-audience-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#audience .js-audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* ===== main_article ===== */
#article h1 {
    font-size: 1.125rem;
    line-height: 1.1;
    hyphens: auto;
}

#article h2 {
    font-size: 1rem;
    line-height: 1.2;
    hyphens: auto;
}

#article h3 {
    font-size: 0.875rem;
    line-height: 1.2;
}

.article-content {
    background-color: var(--primary-bg);
    padding: 20px;
    border-radius: 12px;
}

.content-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

@media (min-width: 768px) {
    #article h1 {
        font-size: 2.5rem;
    }

    #article h2 {
        font-size: 1.75rem;
    }

    #article h3 {
        font-size: 1.5rem;
    }

    .article-content {
        padding: 40px;
    }
}

.btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.js-share-btn i {
    transition: transform 0.3s ease;
}

.js-share-btn:hover i {
    transform: rotate(15deg);
}

/* ===== recipe_gallery ===== */
.js-recipe-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(27, 48, 34, 0.1);
}

.js-recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 48, 34, 0.1);
}

.js-recipe-card p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

@media (max-width: 767px) {
    #recipes h2 {
        font-size: 1rem;
    }

    #recipes h3 {
        font-size: 0.875rem;
    }

    #recipes p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* ===== faq_accordion ===== */
#faq .accordion-button:after {
    display: none;
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--cta-color);
}

#faq .accordion-button:not(.collapsed) {
    background-color: var(--secondary-bg);
    color: var(--text-main);
}

@media (max-width: 768px) {
    #faq h2 {
        font-size: 1rem;
    }

    #faq h3 button {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    #faq .accordion-body {
        font-size: 0.875rem;
    }
}

#faq p,
#faq .accordion-body {
    hyphens: auto;
}

/* ===== contact_section ===== */
#contact {
    overflow: hidden;
}

#contact .form-control::placeholder {
    color: var(--text-secondary-light);
    opacity: 0.7;
}

#contact .form-control:focus {
    border-color: var(--cta-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.2);
}

#contact .btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
}

#contact .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

@media (max-width: 767px) {
    #contact h2 {
        font-size: 1rem !important;
    }

    #contact .form-label {
        font-size: 0.8rem;
    }

    #contact .btn {
        width: 100%;
    }
}

/* ===== legal_disclaimer ===== */
#disclaimer {
    overflow: hidden
}

.js-disclaimer-box {
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05)
}

.js-disclaimer-box:hover {
    transform: translateY(-2px)
}

@media(max-width:767px) {
    #disclaimer h2 {
        font-size: 0.9rem !important;
        line-height: 1.1
    }

    #disclaimer p {
        font-size: 0.8rem !important;
        line-height: 1.3
    }
}

/* ===== footer ===== */
#site-footer .form-control::placeholder {
    color: rgba(252, 249, 244, 0.5);
}

#site-footer a:hover {
    color: var(--cta-color) !important;
    transition: color 0.3s ease;
}

#site-footer .form-check-input:checked {
    background-color: var(--cta-color);
    border-color: var(--cta-color);
}

#site-footer .border-secondary {
    border-color: rgba(252, 249, 244, 0.1) !important;
}