/* 
   Colors Used: hot-pink-forest
   --color-primary: #B0135A
   --color-secondary: #CC1C70
   --color-accent: #1B5E20
   --bg-tint: #FDE8F2
*/

:root {
    --color-primary: #B0135A;
    --color-secondary: #CC1C70;
    --color-accent: #1B5E20;
    --bg-tint: #FDE8F2;
    --color-dark: #2A0818;
    --color-light: #FFF9FB;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles (Warm-Vintage Theme) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Vintage Texture Background (Warm-Vintage Design Style) */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(176, 19, 90, 0.01) 0px, rgba(176, 19, 90, 0.01) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    z-index: 9999;
}

/* Container */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    color: var(--color-light);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-light);
    letter-spacing: -0.5px;
    z-index: 100;
}

/* Hamburger - ALWAYS ON THE RIGHT */
.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-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.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: 500;
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.desktop-nav .nav-list a:hover,
.desktop-nav .nav-list a.active {
    border-color: var(--bg-tint);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-secondary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
}

.mobile-nav a {
    font-size: 18px;
    color: var(--color-light);
    display: block;
}

/* Mobile responsive navigation trigger */
@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);
    }
}

/* Global Sections Style (Mixed Color Mode) */
.light-section {
    background-color: var(--bg-tint);
    color: var(--color-dark);
    padding: 80px 0;
}

.dark-section {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 15px;
}

/* Badge Style */
.vintage-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-light);
    padding: 6px 18px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    border-radius: 999px; /* pill border-style */
    margin-bottom: 20px;
}

/* Buttons (Pill Style, Dramatic Shadows) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px; /* pill style */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* dramatic shadow */
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.btn-outline:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* Hero Section (Circle Image Layout) */
.hero-section {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

/* Circle Image Style for this version's Hero */
.hero-circle-frame {
    width: clamp(260px, 40vw, 450px);
    height: clamp(260px, 40vw, 450px);
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--color-primary);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4); /* dramatic shadow */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline Style (benefits-timeline) */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 4px solid var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -52px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 3px solid var(--bg-tint);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.timeline-content {
    background-color: var(--color-light);
    padding: 30px;
    border-radius: 28px; /* pill style cards */
    box-shadow: 0 24px 64px rgba(0,0,0,0.1); /* dramatic shadow */
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* Two Column Layout (two-col-image) */
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.rounded-media {
    border-radius: 36px; /* pill style for media */
    box-shadow: 0 24px 64px rgba(0,0,0,0.3); /* dramatic shadow */
    width: 100%;
    object-fit: cover;
}

.col-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.col-text p {
    margin-bottom: 15px;
    opacity: 0.95;
}

.vintage-list {
    list-style: none;
    margin-top: 20px;
}

.vintage-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.vintage-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 18px;
}

/* Icon Features Grid (icon-features) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--color-light);
    padding: 40px 30px;
    border-radius: 32px; /* pill style */
    box-shadow: 0 24px 64px rgba(0,0,0,0.08); /* dramatic shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(176,19,90,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* Accordion FAQ (accordion-faq) */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-light);
    color: var(--color-dark);
    margin-bottom: 20px;
    border-radius: 28px; /* pill style */
    box-shadow: 0 24px 64px rgba(0,0,0,0.15); /* dramatic shadow */
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-family: var(--font-serif);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-primary);
}

.faq-item[open] .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 30px 24px 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-answer p {
    margin-top: 15px;
}

/* Gallery Grid (gallery-grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 32px; /* pill style */
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15); /* dramatic shadow */
    height: 300px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(42, 8, 24, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--color-light);
    font-size: 20px;
    font-family: var(--font-serif);
    font-weight: bold;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.placeholder-item {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 32px;
}

/* Inner Hero Layout */
.inner-hero {
    text-align: center;
    padding: 100px 0 60px 0;
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 15px;
}

.inner-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

/* Program Page Modules (grid-6cards) */
.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 36px; /* pill style */
    box-shadow: 0 24px 64px rgba(0,0,0,0.08); /* dramatic shadow */
    border: 1px solid rgba(176,19,90,0.1);
}

.card-num {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-accent);
    font-weight: 900;
    margin-bottom: 15px;
}

.program-card h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Stats Counter */
.stats-counters {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.counter-item {
    flex: 1;
}

.counter-num {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--color-secondary);
    font-weight: 900;
    display: block;
}

.counter-label {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA Box */
.cta-box {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 60px 40px;
    border-radius: 36px; /* pill style */
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.cta-box h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 15px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Mission Page Storytelling */
.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .story-block {
        grid-template-columns: 1.1fr 0.9fr;
    }
    .story-block.reversed {
        direction: rtl;
    }
    .story-block.reversed .story-text {
        direction: ltr;
    }
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.story-text p {
    margin-bottom: 15px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

/* Contact Grid Layout */
.grid-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .grid-contact {
        grid-template-columns: 1.2fr 0.8fr; /* 60% Form, 40% Contacts */
    }
}

.vintage-form {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 36px; /* pill style */
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    border: 1px solid rgba(176,19,90,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px; /* pill style */
    border: 1px solid rgba(0,0,0,0.15);
    background-color: #FFF;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}

.form-group textarea {
    border-radius: 24px;
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.info-card {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 40px;
    border-radius: 36px; /* pill style */
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-intro {
    opacity: 0.8;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    opacity: 0.85;
}

/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
}

.legal-main h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.legal-date {
    opacity: 0.6;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.warning-box {
    background-color: #FFF3CD;
    border-left: 5px solid #FFC107;
    padding: 25px;
    border-radius: 16px;
    color: #856404;
}

/* Thank You Page */
.thank-hero {
    text-align: center;
}

.thank-badge {
    background-color: var(--color-accent);
    color: var(--color-light);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 20px;
}

.thank-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background-color: var(--color-light);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.step-link {
    color: var(--color-primary);
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

/* Footer Layout (Hardcoded text colors to prevent browser translator breaks) */
.site-footer {
    background-color: var(--color-dark) !important;
    color: var(--color-light) !important;
    padding: 80px 0 20px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--color-light) !important;
}

.footer-desc {
    opacity: 0.7 !important;
    color: var(--color-light) !important;
}

.site-footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-light) !important;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer a {
    opacity: 0.8 !important;
    color: var(--color-light) !important;
    transition: opacity 0.3s;
}

.site-footer a:hover {
    opacity: 1 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6 !important;
    color: var(--color-light) !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(--color-dark);
    color: var(--color-light);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; opacity: 0.9; }
#cookie-banner a { color: var(--color-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}
@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; }
}