/*
* Website: Botebeb
* Version: 5.0
* Author: AI
* Color Palette: Pastel Lavender & Rose Palette
*/

:root {
    --color-primary: #C8A2C8; /* Soft Lavender */
    --color-accent: #F4C2C2; /* Gentle Rose Pink */
    --color-text: #4B3A4B; /* Deep Muted Purple/Grey */
    --color-background: #F5F0F5; /* Light Lavender Tint */
    --color-white: #FFFFFF;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: #b38db3;
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-text);
}
.btn-secondary:hover {
    background-color: #e0b0b0;
    color: var(--color-text);
}

/* Header Layout - REQUIRED */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--color-text);
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-background);
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: block; }
    #menu-toggle:checked ~ .mobile-nav { max-height: 400px; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    #menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

/* Unique Hero Section for v5: Vertical Layout */
.hero-vertical {
    text-align: center;
}
.hero-image-container {
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
}
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content-below {
    padding: 40px 20px;
    background-color: var(--color-white);
}
.hero-subtitle {
    max-width: 800px;
    margin: 20px auto 30px;
    font-size: 1.1rem;
}

/* Unique Benefits Section for v5: Horizontal Scroll */
.horizontal-scroll-section {
    background-color: var(--color-white);
}
.scroll-container-wrapper {
    position: relative;
}
.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-background);
}
.scroll-container::-webkit-scrollbar {
    height: 8px;
}
.scroll-container::-webkit-scrollbar-track {
    background: var(--color-background);
}
.scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 10px;
}
.scroll-card {
    flex: 0 0 280px;
    background-color: var(--color-background);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.split-image img {
    border-radius: 12px;
}
@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Unique Section for v5: Myth vs. Fact */
.myth-fact-section {
    background-color: var(--color-white);
}
.myth-fact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.myth-card, .fact-card {
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid;
}
.myth-card {
    background-color: #fdecec;
    border-color: #e57373;
}
.fact-card {
    background-color: #e8f5e9;
    border-color: #81c784;
}
.myth-card h3, .fact-card h3 {
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .myth-fact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.cta-content {
    text-align: center;
}
.cta-content h2 {
    color: var(--color-white);
}
.cta-content .btn-secondary {
    background-color: var(--color-white);
}

/* Program Page: Tabs */
.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--color-accent);
}
.tab-button {
    padding: 15px 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.tab-button.active {
    opacity: 1;
    color: var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
}
.tab-content {
    display: none;
    padding: 30px 10px;
    animation: fadeIn 0.5s;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.image-divider {
    padding: 0;
}
.full-width-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Mission Page: Storytelling */
.storytelling-section .story-entry {
    margin-bottom: 40px;
}
.storytelling-section .story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.storytelling-section .story-entry-image img {
    border-radius: 12px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* Contact Page: Sidebar Layout */
.contact-layout-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.contact-sidebar {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
}
.contact-details .contact-item {
    margin-bottom: 20px;
}
.contact-details strong {
    display: block;
    margin-bottom: 5px;
}
@media (min-width: 992px) {
    .contact-layout-sidebar {
        grid-template-columns: 1fr 2fr;
    }
}

/* Form Styles */
.contact-form {
    max-width: 800px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 5px rgba(200, 162, 200, 0.5);
}

/* Legal & Thank You Pages */
.legal-page, .thank-you-section {
    background-color: var(--color-white);
    padding: 60px 0;
}
.legal-page .container, .thank-you-section .container {
    max-width: 900px;
}
.legal-page h1, .thank-you-section h1 {
    margin-bottom: 30px;
}
.legal-page h2 {
    margin-top: 30px;
}
.thank-you-content {
    text-align: center;
}
.whats-next {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-accent);
}
.next-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: var(--color-text) !important;
    color: var(--color-background) !important;
    padding: 50px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.site-footer h4 {
    color: var(--color-white) !important;
    margin-bottom: 15px;
}
.site-footer p, .site-footer li {
    color: #e0dce0 !important;
}
.site-footer a {
    color: var(--color-accent) !important;
}
.site-footer a:hover {
    color: var(--color-white) !important;
}
.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-legal li {
    margin-bottom: 8px;
}
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #5f4f5f;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}
@media (max-width: 768px) {
    .tab-button {
        width: 100%;
    }
}
/* Cookie Banner - REQUIRED */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--color-text);
    color: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--color-accent); font-weight: bold; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.cookie-btn-decline {
    background-color: #777;
    color: var(--color-white);
}
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}