/*
  design-style: soft-organic
  border-style: rounded
  shadow-style: dramatic
  color-mode: light
  Palette: Soft Coral & Terracotta
*/

:root {
    --primary-color: #E57373; /* Soft Terracotta */
    --secondary-color: #FFB74D; /* Pastel Orange */
    --accent-color: #F06292; /* Soft Rose */
    --background-light: #FFF8F2; /* Very light cream/peach */
    --background-medium: #FFE0B2;
    --text-dark: #4E342E; /* Dark Brown */
    --text-light: #795548;
    --white: #FFFFFF;
    --border-color: #FFCCBC;
}

/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

/* Base Elements */
* {
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--text-dark);
}

h1 { font-size: clamp(36px, 6vw, 56px); }
h2 { font-size: clamp(28px, 5vw, 42px); }
h3 { font-size: clamp(20px, 4vw, 26px); }
h4 { font-size: clamp(18px, 3.5vw, 22px); }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

p {
    margin-bottom: 16px;
}

ul {
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.section-light {
    background-color: var(--white);
    border-radius: 32px;
    margin: 30px 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-title-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

/* Header */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    box-shadow: 0 4px 12px 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: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--text-dark);
}

.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(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    font-weight: 600;
    font-size: 16px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0 10px 20px 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;
}

.mobile-nav li a {
    font-size: 18px;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}
.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Section (Floating Card) */
.hero-section-floating {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(5px) brightness(0.9);
}
.hero-floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 24px;
    max-width: 650px;
    box-shadow: 0 24px 64px rgba(78, 52, 46, 0.22);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Benefits Section */
.benefits-grid-3col {
    display: grid;
    gap: 32px;
}
.benefit-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.18);
}

/* Icon Features */
.icon-features-grid {
    display: grid;
    gap: 24px;
    text-align: center;
}
.icon-feature-item {
    padding: 24px;
}
.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 16px;
}
.placeholder-image {
    background-image: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    height: 250px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

/* Checklist Block */
.checklist-container {
    display: grid;
    gap: 24px;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist li {
    font-size: 1.1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.checkmark {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-right: 12px;
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    gap: 48px;
    align-items: center;
}
.two-col-image img {
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

/* Program Page - Accordion */
.accordion-container {
    max-width: 800px;
    margin: auto;
}
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.accordion-title {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-title::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}
.accordion-item[open] .accordion-title::after {
    transform: rotate(45deg);
}
.accordion-content {
    padding: 0 20px 20px 20px;
}

/* Mission Page - Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: auto;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -1.5px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--background-light);
    top: 15px;
    left: 10px;
    z-index: 1;
}
.timeline-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* Contact Page */
.contact-form-centered {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}
.contact-cards-grid {
    display: grid;
    gap: 32px;
    margin-top: 60px;
}
.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.contact-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 48px;
    color: var(--white);
    padding: 80px 0;
}
.cta-container {
    text-align: center;
}
.section-cta h2 { color: var(--white); }
.section-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}
.section-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Page Header */
.page-header-section {
    padding: 40px 0;
    text-align: center;
    background-color: var(--background-medium);
    border-radius: 0 0 48px 48px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
}
.thank-you-icon {
    font-size: 64px;
}
.thank-you-next-steps {
    margin-top: 48px;
}
.thank-you-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark) !important;
    color: var(--background-light) !important;
    padding: 60px 0 20px 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h4 {
    color: var(--white) !important;
    margin-bottom: 20px;
}
.footer-column p, .footer-column a, .footer-column li {
    color: #E0E0E0 !important;
    font-size: 0.9em;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column li {
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #4E4E4E;
    padding-top: 20px;
    font-size: 0.8em;
}
.footer-bottom p {
    color: #BDBDBD !important;
}

/* Cookie Banner */
#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(--text-dark);
    color: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(120%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--secondary-color); text-decoration: underline; }
.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: 8px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}
.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* Media Queries (Mobile First) */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger,
    .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); }
    .section { padding: 40px 0; }
}

@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; }
}

@media (min-width: 768px) {
    .benefits-grid-3col { grid-template-columns: repeat(3, 1fr); }
    .icon-features-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .checklist-container { grid-template-columns: repeat(2, 1fr); }
    .two-col-layout { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}