/* 
   Palette: Pastel Lavender & Pink (Version 5)
   Primary: #DDA0DD (Plum/Lavender)
   Secondary: #FFB6C1 (Light Pink)
   Dark: #4A3B4C (Deep Purple-Grey)
   Light: #FFF0F5 (Lavender Blush)
*/

:root {
    --primary-color: #DDA0DD;
    --secondary-color: #FFB6C1;
    --dark-color: #4A3B4C;
    --light-color: #FFF0F5;
    --text-color: #332b34;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin-bottom: 15px; }

/* Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--light-color); }

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Layout (Strict Template) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-color);
}

.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(--white) !important;
    z-index: 100;
}

.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(--white);
    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;
}

.desktop-nav a {
    color: var(--white);
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--secondary-color);
}

.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(--dark-color);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--white);
    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); }
}

/* Page Header */
.page-header {
    background-color: var(--light-color);
    padding: 60px 0;
    border-bottom: 1px solid var(--secondary-color);
}
.header-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* --- INDEX: Vertical Hero --- */
.hero-vertical {
    display: flex;
    flex-direction: column;
}
.hero-image-wrapper {
    width: 100%;
    height: 50vh;
    min-height: 400px;
}
.hero-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content-bottom {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.hero-content-bottom h1 {
    color: var(--white);
}
.hero-subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- INDEX: Horizontal Scroll Gallery --- */
.section-header-left {
    margin-bottom: 40px;
    max-width: 600px;
}
.scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}
.scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.scroll-wrapper::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}
.scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}
.scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.scroll-card {
    width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(74, 59, 76, 0.08);
    border-top: 4px solid var(--primary-color);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* --- INDEX: Overlap Split --- */
.overlap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 992px) {
    .overlap-grid {
        grid-template-columns: 1fr 1fr;
    }
    .overlap-content {
        padding-right: 40px;
    }
    .overlap-image-box {
        position: relative;
        margin-left: -40px;
        margin-top: 40px;
    }
}

.overlap-image-box {
    position: relative;
}
.overlap-img {
    border-radius: 20px;
    box-shadow: -15px 15px 0 var(--secondary-color);
}
.floating-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}
.custom-list {
    list-style: none;
    margin-top: 20px;
}
.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* --- INDEX: Info Grid --- */
.info-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .info-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.info-box {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}
.info-box:hover {
    transform: translateY(-5px);
}

/* --- INDEX: Quotes Grid --- */
.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .quotes-grid { grid-template-columns: repeat(3, 1fr); }
}
.quote-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}
.quote-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-color);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}
.quote-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
}
.quote-card cite {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--primary-color);
    font-style: normal;
}

/* --- PROGRAM: CSS Tabs --- */
.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}
.tab-input {
    display: none;
}
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
.tab-label {
    padding: 12px 24px;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.tab-label:hover {
    background: var(--secondary-color);
}
.tabs-content-area {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(74, 59, 76, 0.1);
    overflow: hidden;
}
.tab-panel {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Logic */
#tab1:checked ~ .tabs-nav label[for="tab1"],
#tab2:checked ~ .tabs-nav label[for="tab2"],
#tab3:checked ~ .tabs-nav label[for="tab3"],
#tab4:checked ~ .tabs-nav label[for="tab4"] {
    background: var(--primary-color);
    color: var(--white);
}

#tab1:checked ~ .tabs-content-area #panel1,
#tab2:checked ~ .tabs-content-area #panel2,
#tab3:checked ~ .tabs-content-area #panel3,
#tab4:checked ~ .tabs-content-area #panel4 {
    display: block;
}

.panel-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}
@media (min-width: 768px) {
    .panel-split { grid-template-columns: 1fr 1fr; }
}
.panel-img img {
    border-radius: 10px;
}

/* --- PROGRAM: FAQ Simple List --- */
.faq-simple-list {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item-simple {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* --- MISSION: Vertical Storytelling --- */
.story-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}
@media (min-width: 768px) {
    .story-row { grid-template-columns: 1fr 1fr; }
    .story-row.reverse .story-text { order: 2; }
    .story-row.reverse .story-image { order: 1; }
}
.story-year {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.story-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(74, 59, 76, 0.15);
}

/* --- MISSION: Vertical Timeline --- */
.vertical-timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}
.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: var(--secondary-color);
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}
.timeline-dot {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--light-color);
}
.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- MISSION: Manifesto --- */
.manifesto-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--dark-color);
    color: var(--white);
    border-radius: 20px;
}
.manifesto-box h2 { color: var(--secondary-color); }
.manifesto-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
}

/* --- CONTACT: Sidebar Layout --- */
.sidebar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 992px) {
    .sidebar-grid { grid-template-columns: 350px 1fr; }
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-widget {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}
.contact-detail {
    margin-bottom: 15px;
}
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(74, 59, 76, 0.1);
}
.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--light-color);
}
.custom-form .form-group {
    margin-bottom: 20px;
}
.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}
.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- LEGAL PAGES --- */
.legal-container {
    max-width: 800px;
}
.legal-content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}
.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* --- THANK YOU PAGE --- */
.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px;
}
.icon-success {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-color);
}
.action-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.site-footer {
    padding: 60px 0 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* --- 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;
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.4s ease;
}
#cookie-banner.hidden {
    transform: translateY(110%);
}
#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
}
#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 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.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 (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; }
}