/* 
   Color Palette: Graphite & Copper
   - Dark BG: #1a1a2e
   - Dark Card/Header: #16213e
   - Light BG: #f4f4f9
   - Accent: #e94560
   - Text Light: #f0f0f0
   - Text Dark: #333333
*/

:root {
    --color-dark-bg: #1a1a2e;
    --color-dark-card: #16213e;
    --color-light-bg: #f4f4f9;
    --color-accent: #e94560; /* Vibrant Pink/Red */
    --color-secondary: #f0a55a; /* Warm Copper/Orange */
    --color-text-light: #f0f0f0;
    --color-text-dark: #333333;
    --shadow-dramatic: 0 24px 64px rgba(0,0,0,0.35);
    --shadow-dramatic-hover: 0 32px 80px rgba(0,0,0,0.45);
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.section-dark {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.section-light {
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
}

.text-dark { color: var(--color-text-dark); }
.text-center { text-align: center; }

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
    opacity: 0.9;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-dark-card);
    z-index: 1000;
}

.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;
    color: var(--color-text-light);
    z-index: 100;
}
.logo:hover { color: var(--color-secondary); }

.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-light);
    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;
}

.desktop-nav .nav-list a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 16px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px; /* Adjust based on header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-dark-card);
    transition: max-height 0.3s ease;
    z-index: 99;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: var(--color-text-light);
    font-size: 18px;
    display: block;
}

@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); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0; /* sharp */
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic);
    color: var(--color-text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-dark-bg);
}

.btn-full-width {
    width: 100%;
}

/* --- Hero: Diagonal Split --- */
.hero-diagonal-split {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.hero-content-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    flex: 1;
}

.hero-text-wrapper {
    max-width: 600px;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin: 24px 0 32px;
    opacity: 0.9;
}

.hero-image-area {
    flex: 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.hero-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-diagonal-split {
        flex-direction: row;
    }
    .hero-content-area {
        flex-basis: 50%;
        padding: 64px 24px;
        justify-content: flex-start;
    }
    .hero-text-wrapper {
        margin-left: auto;
        margin-right: -5%;
        position: relative;
        z-index: 2;
    }
    .hero-image-area {
        flex-basis: 50%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* --- Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-accent);
    top: 0;
    bottom: 0;
    left: 18px;
}

.timeline-item {
    padding: 10px 40px 30px 60px;
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--color-light-bg);
    border: 4px solid var(--color-accent);
    border-radius: 0; /* sharp */
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-icon {
        display: none;
    }
}

.timeline-content h3 {
    color: var(--color-dark-bg);
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .timeline::after {
        left: 50%;
        margin-left: -2px;
    }
    .timeline-item {
        width: 50%;
        padding: 10px 40px;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 60px;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 60px;
    }
    .timeline-icon {
        left: 50%;
        margin-left: -20px;
    }
}

/* --- Testimonials Section --- */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.testimonial-card {
    background-color: var(--color-dark-card);
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dramatic-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    margin-right: 16px;
}

.testimonial-name {
    font-weight: bold;
    display: block;
}

.testimonial-rating {
    color: var(--color-secondary);
}

@media (min-width: 768px) {
    .testimonials-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Checklist Section --- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.checklist-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent);
    margin-right: 16px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 64px 16px;
    background: linear-gradient(45deg, var(--color-dark-bg), var(--color-dark-card));
    color: var(--color-text-light);
    text-align: center;
}

.cta-banner-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.cta-banner-content p {
    max-width: 600px;
    margin: 16px auto 32px;
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-placeholder {
    background-color: var(--color-dark-card);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    min-height: 200px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Page Header --- */
.page-header {
    padding: 64px 16px;
    text-align: center;
}
.page-header h1 {
    margin-bottom: 8px;
}
.page-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Accordion (Program Page) --- */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.accordion-title {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.accordion-title h3 { margin: 0; }

.accordion-title::after {
    content: '+';
    font-size: 2rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.accordion-item[open] > .accordion-title::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px 20px;
}

/* --- Image Content Split (Program Page) --- */
.image-content-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.image-content-split .image-wrapper {
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .image-content-split {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* --- Split Layout (Mission Page) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
    }
}

/* --- Values Grid (Mission Page) --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    background: rgba(255, 255, 255, 0.05); /* glassmorphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 6fr 4fr;
    }
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 0; /* sharp */
}
.contact-info-wrapper {
    background-color: #fff;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-detail-item {
    margin-bottom: 24px;
}
.contact-detail-item h3 {
    font-size: 1.1rem;
    color: var(--color-accent);
}

/* --- Legal/Text Pages --- */
.text-content h1 { margin-bottom: 24px; }
.text-content h2 { margin-top: 32px; margin-bottom: 12px; }
.text-content ul {
    list-style-position: inside;
    padding-left: 20px;
}
.text-content li { margin-bottom: 8px; }

/* --- Thank You Page --- */
.thank-you-section { padding: 80px 0; }
.thank-you-next-steps { margin-top: 48px; }
.thank-you-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.back-to-home {
    display: inline-block;
    margin-top: 48px;
    font-weight: bold;
}

/* --- Footer --- */
.site-footer-dark {
    background-color: var(--color-dark-card) !important;
    color: var(--color-text-light) !important;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-grid h4 {
    color: var(--color-secondary) !important;
    margin-bottom: 16px;
}

.footer-grid p, .footer-grid a {
    color: var(--color-text-light) !important;
    opacity: 0.8;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 8px;
}

.footer-grid a:hover {
    opacity: 1;
    color: var(--color-secondary) !important;
}

.footer-copyright {
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-dark-card);
    color: var(--color-text-light);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    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; }
#cookie-banner a { 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;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0; /* sharp */
    transition: background-color 0.3s;
}
.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}
.cookie-btn-accept:hover { background-color: var(--color-secondary); }
.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid var(--color-text-light);
    color: var(--color-text-light);
}
.cookie-btn-decline:hover { background-color: rgba(255,255,255,0.1); }

@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; }
}