/* Palette: Pastel Lavender & Rose */
/* Colors: #DDA0DD (Plum/Lavender), #FFB6C1 (Light Pink), #FFF0F5 (Lavender Blush), #4A4A4A (Dark Grey) */

:root {
    --primary-color: #DDA0DD;
    --secondary-color: #FFB6C1;
    --bg-light: #FFF0F5;
    --text-dark: #4A4A4A;
    --text-light: #ffffff;
    --border-color: #e0d4e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c88bc8;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-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(--primary-color);
    z-index: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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;
}

.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 {
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--primary-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(--bg-light);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

@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);
    }
}

/* Index: Vertical Hero */
.hero-vertical {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
}

.hero-image-wrapper {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrapper {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

/* Index: Intro Section */
.intro-section {
    padding: 80px 0;
}

.intro-header h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.intro-body p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Index: Horizontal Scroll Benefits */
.benefits-scroll-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.horizontal-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.scroll-card {
    flex: 0 0 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.scroll-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Index: Overlap Feature */
.overlap-feature {
    padding: 100px 0;
}

.overlap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .overlap-grid {
        grid-template-columns: 1fr 1fr;
    }
    .overlap-text {
        padding-right: 40px;
    }
    .overlap-image {
        position: relative;
    }
    .overlap-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        background-color: var(--secondary-color);
        z-index: -1;
        border-radius: 10px;
    }
}

.overlap-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.overlap-text p {
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.overlap-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Index: Masonry Testimonials */
.masonry-testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.masonry-grid {
    column-count: 1;
    column-gap: 20px;
}

@media (min-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

.masonry-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    break-inside: avoid;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--secondary-color);
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Page Headers */
.page-header {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Program: CSS Tabs */
.tabs-section {
    padding: 80px 0;
}

.css-tabs {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.css-tabs input[type="radio"] {
    display: none;
}

.tab-label {
    padding: 15px 25px;
    background: #f9f9f9;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    text-align: center;
    border-bottom: 2px solid #ddd;
    transition: all 0.3s;
}

.tab-label:hover {
    background: var(--bg-light);
}

.tab-content {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    display: none;
    order: 99;
    border: 1px solid #eee;
    border-top: none;
}

.tab-content h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-content p {
    margin-bottom: 15px;
}

#tab1:checked ~ label[for="tab1"],
#tab2:checked ~ label[for="tab2"],
#tab3:checked ~ label[for="tab3"] {
    background: #fff;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
    display: block;
}

@media (max-width: 600px) {
    .tab-label {
        flex: 100%;
        border-bottom: 1px solid #ddd;
    }
}

/* Program: Parallax CTA */
.parallax-cta {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay {
    background-color: rgba(221, 160, 221, 0.85); /* Primary color with opacity */
    padding: 100px 0;
    color: #fff;
}

.parallax-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Program: Grid FAQ */
.grid-faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Mission: Vertical Storytelling */
.story-vertical {
    padding: 80px 0;
}

.story-block {
    margin-bottom: 60px;
    text-align: center;
}

.story-year {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.story-block h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-block p {
    margin-bottom: 15px;
}

.story-image-full {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
}

.story-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission: Timeline Values */
.timeline-values {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.timeline-list {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Mission: Manifesto */
.manifesto-section {
    padding: 80px 0;
}

.manifesto-text {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact: Sidebar Layout */
.contact-sidebar-layout {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-sidebar {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
}

.contact-sidebar h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-main {
    padding: 20px 0;
}

.contact-main h3 {
    margin-bottom: 25px;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Legal Pages */
.legal-section {
    padding: 60px 0;
}

.legal-section h1 {
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-box {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-box h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.action-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-info h3, .footer-contact h4, .footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

/* 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: #fff;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    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: 14px;
}

#cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background-color: #eee;
    color: #333;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    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;
    }
}