/* 
Palette: midnight-rose
Primary: #0C0F24 (Dark corporate blue)
Secondary: #B22B5B (Rose/pink accent background)
Accent: #F39C12 (Warm golden orange)
Tint: #F5F5F5 (Light gray background)
Design Style: corporate-clean
Border Style: rounded
Shadow Style: subtle
Color Mode: light
*/

:root {
    --color-primary: #0C0F24;
    --color-secondary: #B22B5B;
    --color-accent: #F39C12;
    --bg-tint: #F5F5F5;
    --bg-white: #FFFFFF;
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    
    --radius-card: 12px;
    --radius-btn: 8px;
    --radius-pill: 50px;
    
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

/* Layout Containers (Corporate Clean Grid Style) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }
}

.bg-tint {
    background-color: var(--bg-tint);
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Custom Grids (Mobile-First) */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Header Layout & Burger Logic */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    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-primary);
    z-index: 101;
}

.logo:hover {
    color: var(--color-secondary);
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 101;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition-normal);
}

.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 .nav-list a {
    color: var(--color-primary);
    font-weight: 500;
}

.desktop-nav .nav-list 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(--color-primary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
}

.mobile-nav a {
    color: var(--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);
    }
}

/* Hero Diagonal Split Layout */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    min-height: 550px;
    position: relative;
    background-color: var(--color-primary);
    color: var(--text-light);
}

.hero-content {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 54px);
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-image {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

@media (min-width: 1024px) {
    .hero-diagonal {
        flex-direction: row;
        min-height: 650px;
    }
    
    .hero-content {
        width: 50%;
        padding: 80px 80px 80px 10%;
    }
    
    .hero-image {
        width: 50%;
        height: auto;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Button UI */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background-color: var(--bg-white);
    color: var(--color-primary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Card Style (Corporate Clean, rounded, subtle shadow) */
.card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card {
    transition: transform var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* Checklist Block styling */
.checklist-intro h2 {
    margin-bottom: 20px;
}

.checklist-intro p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.checkmark {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-secondary);
    background-color: rgba(178, 43, 91, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.checklist-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Gallery Grid Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(12, 15, 36, 0.8));
    padding: 24px;
    color: var(--text-light);
}

.gallery-overlay span {
    font-size: 20px;
    font-weight: bold;
}

.placeholder-item {
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.placeholder-content h4 {
    color: var(--color-accent);
    font-size: 22px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item.large {
        grid-column: span 2;
    }
}

/* CTA Banner */
.cta-banner {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 80px 24px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--text-light);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Icon features box */
.feature-box {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-subtle);
}

.feature-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Program Page Timeline & Numbered List */
.internal-hero {
    padding: 100px 24px;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
}

.internal-hero h1 {
    color: var(--text-light);
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}

.internal-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.rounded-img {
    border-radius: var(--radius-card);
}

.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

.numbered-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.number-badge {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.numbered-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .numbered-item {
        flex-direction: row;
        align-items: flex-start;
    }
    .number-badge {
        font-size: 64px;
        flex-shrink: 0;
        width: 100px;
    }
}

/* Stats Counter design */
.stat-card {
    padding: 24px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
}

/* FAQ list style */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Manifesto block */
.manifesto-section {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 80px 24px;
}

.manifesto-card {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-card h2 {
    color: var(--color-accent);
    margin-bottom: 24px;
}

.manifesto-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
}

.manifesto-author {
    font-weight: bold;
    color: var(--color-accent);
}

/* Contact Layout Form UI */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    font-size: 14px;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-btn);
    font-size: 16px;
    background-color: var(--bg-tint);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: var(--bg-white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info-box {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--radius-card);
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
}

/* Legal Pages Styling */
.legal-section {
    padding: 80px 0;
}

.legal-section h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-block {
    margin-bottom: 32px;
}

.legal-block h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.legal-block p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-block ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.disclaimer-box {
    background-color: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 24px;
    border-radius: var(--radius-card);
}

/* Thank You Page */
.thank-section {
    padding: 100px 24px;
}

.thank-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 32px;
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.thank-card h1 {
    margin-bottom: 16px;
}

.next-steps {
    margin: 32px 0;
    text-align: left;
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: var(--radius-card);
}

.next-steps h3 {
    margin-bottom: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer Section with Hardcoded Safety Colors */
.site-footer {
    background-color: #0C0F24 !important;
    color: #FFFFFF !important;
    padding: 64px 24px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .logo {
    color: #FFFFFF !important;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #CCCCCC !important;
    font-size: 14px;
}

.footer-grid h4 {
    color: #F39C12 !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: #CCCCCC !important;
    font-size: 15px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #F39C12 !important;
}

.footer-contact p {
    color: #CCCCCC !important;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: #FFFFFF !important;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #999999 !important;
}

/* Cookie Banner with Slide-up Animation */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-primary);
    color: var(--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 -4px 20px rgba(0, 0, 0, 0.15);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-secondary);
    color: var(--text-light);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-fast);
}

.cookie-btn-accept:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: var(--transition-fast);
}

.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;
    }
}