/* Palette Name: blush-charcoal */
/* Primary: #C0246A, Secondary: #D83080, Accent: #1C2A35, Tint: #FFF0F6 */

:root {
    --color-primary: #C0246A;
    --color-secondary: #D83080;
    --color-accent: #1C2A35;
    --bg-tint: #FFF0F6;

    --bg-dark-body: #161114;
    --bg-dark-card: #251820;
    --text-light: #FFF0F6;
    --text-muted: #E0C8D2;

    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.dark-theme {
    background-color: var(--bg-dark-body);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Headings - Warm Vintage Style */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
}

.main-heading {
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

.page-header-section {
    padding: 30px 0;
}
/* Layout Containers - Mobile First */
.main-container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .main-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1200px) {
    .main-container {
        max-width: 1200px;
    }
}

.section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.text-center {
    text-align: center;
}

/* Vintage Badges - Pill Style */
.vintage-badge, .sub-badge, .tab-badge {
    display: inline-block;
    padding: 6px 20px;
    background-color: var(--color-accent);
    color: var(--color-secondary);
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Buttons - Pill Style, Flat Shadow */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: none;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Site Header */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark-body);
    border-bottom: 1px solid rgba(192, 36, 106, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: bold;
    color: var(--color-secondary);
    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(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--color-secondary);
}

.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-dark-card);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 240, 246, 0.1);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
}

@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);
    }
}

/* Hero Circle Layout */
.hero-circle {
    padding-top: 40px;
    padding-bottom: 60px;
    background: repeating-linear-gradient(45deg, #161114, #161114 10px, #1c151a 10px, #1c151a 20px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }
}

.circle-image-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary);
    box-shadow: none;
}

@media (min-width: 768px) {
    .circle-image-container {
        width: 360px;
        height: 360px;
    }
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

/* Benefits Section - 3 Col */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: var(--bg-dark-card);
    border-radius: 32px;
    padding: 32px 24px;
    border: 1px solid rgba(192, 36, 106, 0.25);
}

.card-icon-box {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    margin-bottom: 12px;
}

.card-subtext {
    font-size: 14px;
    color: var(--color-secondary);
}

/* Stats Bar */
.stats-bar-section {
    background-color: var(--color-accent);
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Two Col Image Section */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-img {
    border-radius: 28px;
    border: 1px solid rgba(192, 36, 106, 0.3);
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.custom-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Gallery Section */
.gallery-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .gallery-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card {
    background-color: var(--bg-dark-card);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(216, 48, 128, 0.2);
}

.gallery-img-box {
    height: 200px;
    overflow: hidden;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    padding: 20px;
}

.gallery-content h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.placeholder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark-card), var(--color-accent));
    padding: 20px;
    text-align: center;
}

.ph-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

/* Accordion FAQ */
.max-width-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-container {
    margin-top: 32px;
}

.accordion-item {
    background-color: var(--bg-dark-card);
    border-radius: 20px;
    margin-bottom: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(192, 36, 106, 0.2);
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
    outline: none;
}

.accordion-content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 240, 246, 0.1);
}

/* CTA Banner */
.cta-banner-section {
    background: linear-gradient(135deg, var(--color-accent), #2A1521);
    padding: 60px 20px;
    border-top: 1px solid var(--color-primary);
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Program Tabs CSS Only */
.tabs {
    display: flex;
    flex-direction: column;
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tabs-nav label {
    padding: 12px 24px;
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(192, 36, 106, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.tab-panel {
    display: none;
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: 32px;
    border: 1px solid var(--color-primary);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-secondary);
}

.tab-content-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.program-hero-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 40px;
}

.program-banner-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.program-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(22, 17, 20, 0.95));
}

/* Mission Page Storytelling */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-reverse .story-text {
        order: 2;
    }

    .story-reverse .story-image {
        order: 1;
    }
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--bg-dark-card);
    padding: 32px 24px;
    border-radius: 28px;
    border: 1px solid rgba(192, 36, 106, 0.2);
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--color-secondary);
}

/* Contact Page Split */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 48px;
    }
}

.contact-info-card, .contact-form-card {
    background-color: var(--bg-dark-card);
    padding: 36px;
    border-radius: 32px;
    border: 1px solid rgba(192, 36, 106, 0.25);
}

.contact-lead-text {
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

/* Form Styles */
.site-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-dark-body);
    border: 1px solid rgba(192, 36, 106, 0.4);
    border-radius: 50px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

textarea.form-input {
    border-radius: 20px;
    resize: vertical;
}

.form-input:focus {
    border-color: var(--color-secondary);
}

/* Legal Pages */
.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-date {
    font-size: 14px;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 20px;
    margin-top: 12px;
}

.legal-section li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.disclaimer-box {
    background-color: var(--bg-dark-card);
    padding: 24px;
    border-radius: 20px;
    border-left: 4px solid var(--color-primary);
}

/* Thank Page */
.thank-container {
    max-width: 600px;
    margin: 40px auto;
}

.thank-badge-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px auto;
}

.thank-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Footer - Strict Requirement */
.site-footer {
    padding-top: 60px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(192, 36, 106, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@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.2fr;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-secondary) !important;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 240, 246, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-accent);
    border-top: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    color: var(--text-light);
    font-size: 14px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: #ffffff;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-muted);
}

@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;
    }
}