/* =========================================
   1. FONTS & VARIABLES
   ========================================= */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/css/fonts/lato-v25-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/css/fonts/merriweather-v33-latin-regular.woff2') format('woff2');
}
:root {
    --bg-color: #F7F5E6;
    --text-color: #333333;
    --primary-color: #587D71;
    --accent-color: #B89B74;
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Merriweather', serif;
}

/* =========================================
   2. BASE STYLES
   ========================================= */
body {
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
}
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header {
    background: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}
.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {margin: 0; font-size: 2.2rem;}
header h1 a {color: var(--primary-color); text-decoration: none;}

nav a {
    margin: 0 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
nav a:hover, nav a.nav-active {
    border-bottom: 3px solid var(--primary-color);
}
nav a:last-child {margin-left: 2rem;}

/* CTA бутон в менюто */
.cta-nav-button {
    background: var(--accent-color) !important;
    color: white !important;
    padding: 0.75rem 1.8rem !important;
    border-radius: 50px !important;
    border-bottom: none !important;
    font-weight: bold !important;
    box-shadow: 0 6px 20px rgba(184, 155, 116, 0.3);
    transition: all 0.3s ease;
}
.cta-nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 155, 116, 0.4);
}

/* =========================================
   4. CTA BUTTONS (GENERAL)
   ========================================= */
.cta-button {
    background: var(--accent-color);
    color: white !important;
    padding: 1rem 2.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(184, 155, 116, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}
.cta-button:hover {transform: translateY(-4px); box-shadow: 0 15px 35px rgba(184, 155, 116, 0.4);}
.cta-button.big {font-size: 1.4rem; padding: 1.3rem 3rem;}
.cta-button.extra-big {font-size: 1.6rem; padding: 1.5rem 4rem;}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)), #e9e6d7;
    border-radius: 20px;
    margin: 3rem 2rem 6rem;
}
.hero h1 {font-size: 3.2rem; margin-bottom: 0.5rem;}
.hero-subtitle {font-size: 1.3rem; margin: 1rem 0 1.5rem; color: #555;}
.trust {font-size: 0.95rem; color: #666; margin-top: 1.5rem;}

/* =========================================
   6. TWO COLUMNS – РЕДУВАНЕ + ОТСТЪПИ
   ========================================= */
.two-column {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin: 8rem 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Редуване на колоните */
.two-column:nth-of-type(odd)  { flex-direction: row; } 
.two-column:nth-of-type(even) { flex-direction: row-reverse; } 

/* Снимки */
.two-column img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.14);
    object-fit: cover;
}

/* Мобилна версия */
@media (max-width: 768px) {
    .two-column,
    .two-column:nth-of-type(odd),
    .two-column:nth-of-type(even) {
        flex-direction: column;
        margin: 5rem 1rem;
        gap: 3rem;
    }
    .two-column .column:first-child {order: -1;}
}

/* =========================================
   7. INGREDIENTS SECTION
   ========================================= */
.ingredients-section {
    background: white;
    padding: 6rem 2rem;
    text-align: center;
    margin: 4rem 2rem;
    border-radius: 20px;
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
}
.ing img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* =========================================
   8. TESTIMONIALS
   ========================================= */
.testimonials {
    background: #e9e6d7;
    padding: 7rem 2rem;
    border-radius: 20px;
    margin: 7rem 2rem;
}
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================================
   9. FINAL CTA
   ========================================= */
.final-cta {
    text-align: center;
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #e9e6d7, #f5f2e8);
    border-radius: 20px;
    margin: 7rem 2rem;
}
.new-price {font-size: 3rem; color: var(--accent-color);}

/* =========================================
   10. ОБЩИ ОТСТЪПИ И МОБИЛНИ ПОПРАВКИ
   ========================================= */
@media (max-width: 768px) {
    .hero, .testimonials, .final-cta, .ingredients-section {
        margin: 4rem 1rem;
        padding: 4rem 1.5rem;
    }
    .hero h1 {font-size: 2.6rem;}
    .ingredients-grid {grid-template-columns: 1fr 1fr;}
}
