/* #0A2342, #1B3A6B, #C9A227, #F4F8FF */
/* Design Style: bold-editorial | Border Style: rounded | Shadow Style: dramatic | Color Mode: light */

:root {
    --color-primary: #0A2342;
    --color-secondary: #1B3A6B;
    --color-accent: #C9A227;
    --bg-tint: #F4F8FF;
    --color-dark: #07162C;
    --color-light: #FFFFFF;
    --color-text: #2B3A4A;
    --color-text-muted: #5B6D82;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Base Typography - Bold Editorial style */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: clamp(15px, 2.5vw, 17px);
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 16px 40px rgba(10, 35, 66, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Header & Hamburger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-light);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    z-index: 1000;
}

.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: 28px;
    font-weight: bold;
    color: var(--color-primary);
    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;
    margin: 5px 0;
    background-color: var(--color-primary);
    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 .nav-list a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    padding: 8px 0;
    position: relative;
}

.desktop-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.desktop-nav .nav-list a:hover::after {
    width: 100%;
}

.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;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--color-light);
    font-size: 18px;
    font-weight: 500;
    display: block;
}

/* Sections General */
.section {
    padding: 60px 16px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--color-text-muted);
}

.contact-hero,
.mission-hero,
.program-hero {
    text-align: center;
}

/* Hero Fullscreen */
.hero-fullscreen {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--color-light);
    text-align: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(38px, 8vw, 76px);
    color: var(--color-light);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* Benefits Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    left: -35px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.timeline-content {
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Expert Block */
.expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.expert-image-wrapper {
    position: relative;
}

.expert-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.expert-experience-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.expert-content {
    padding: 10px;
}

.expert-intro {
    font-weight: 600;
    color: var(--color-secondary);
}

.expert-quote {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin: 30px 0;
}

.expert-author strong {
    display: block;
    font-size: 18px;
    color: var(--color-primary);
}

.expert-author span {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Quote Highlight */
.quote-highlight-section {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 80px 20px;
    text-align: center;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 1;
    color: var(--color-accent);
    display: block;
    margin-bottom: -20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 36px);
    color: var(--color-light);
    line-height: 1.4;
    margin-bottom: 30px;
}

.quote-line {
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto 20px auto;
}

.quote-signature {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--color-accent);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--color-light);
}

.gallery-overlay h4 {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 0;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.placeholder-item {
    background-color: var(--bg-tint);
    border: 2px dashed var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.placeholder-content .placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.placeholder-content h4 {
    margin-bottom: 10px;
}

/* Checklist Block */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.checklist-item p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Program & Mission Pages Specifics */
.page-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* Numbered sections for program.html */
.numbered-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
}

.num-badge {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--color-accent);
    line-height: 1;
    font-weight: 700;
}

.num-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Story team for mission.html */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.story-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.story-caption {
    background-color: var(--bg-tint);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--color-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.05);
}

.value-num {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 16px;
}

/* Contact Page Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.contact-info h2 {
    color: var(--color-light);
    margin-bottom: 20px;
}

.contact-lead {
    color: rgba(255,255,255,0.8);
}

.info-list {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 24px;
}

.info-item h4 {
    color: var(--color-accent);
    margin-bottom: 4px;
}

.info-item p, .info-item a {
    color: rgba(255,255,255,0.9);
}

.hours-block {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.hours-block p {
    color: #fff;
}

.hours-block h3 {
    color: var(--color-accent);
    margin-bottom: 10px;
}

/* Form Styles */
.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.custom-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(10, 35, 66, 0.15);
    background-color: var(--bg-tint);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-light);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.form-submit {
    width: 100%;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.03);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    margin: 0;
    color: var(--color-text-muted);
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
}

.legal-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-meta {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.legal-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Thank You Page */
.thank-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.thank-card {
    text-align: center;
    background-color: var(--bg-tint);
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
}

.thank-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

.thank-steps {
    text-align: left;
    background-color: var(--color-light);
    padding: 24px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

.thank-steps h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.thank-steps ul {
    padding-left: 20px;
}

.thank-steps li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Footer style - Hardcoded colors for translation safety */
.site-footer {
    background-color: #0A2342 !important;
    color: #F4F8FF !important;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    color: #C9A227 !important;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: rgba(244, 248, 255, 0.8) !important;
}

.site-footer h4 {
    color: #C9A227 !important;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 12px;
}

.footer-links a, .footer-legal a {
    color: rgba(244, 248, 255, 0.9) !important;
}

.footer-links a:hover, .footer-legal a:hover {
    color: #C9A227 !important;
}

.footer-contacts p {
    color: rgba(244, 248, 255, 0.9) !important;
    margin-bottom: 10px;
}

.footer-phone, .footer-email {
    color: #C9A227 !important;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 248, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(244, 248, 255, 0.6) !important;
    margin: 0;
}

/* Cookie Banner styling */
#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;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 -12px 40px rgba(0,0,0,0.2);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

#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-accent);
    color: var(--color-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
}

/* Media Queries - Mobile-First Approach */

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 100px 24px;
    }

    .expert-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbered-row {
        flex-direction: row;
        gap: 40px;
    }

    .num-badge {
        flex-shrink: 0;
        width: 120px;
    }

    .story-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

@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);
    }

    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-btns {
        width: 100%;
    }
    
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}