/*
  Palette: Coral & Slate
  Primary: #FF6F61 (Coral)
  Dark: #0C0F24 (Dark Slate)
  Accent: #F2D4C9 (Light Peach)
  Text: #333333
  Background: #FFFFFF
*/

:root {
    --color-primary: #FF6F61;
    --color-primary-dark: #A93226;
    --color-dark: #0C0F24;
    --color-accent: #F2D4C9;
    --color-text: #333333;
    --color-background: #FFFFFF;
    --color-light-gray: #f8f9fa;
    --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.07);
    --border-radius: 0; /* Sharp border style */
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 6vw, 3rem); }
h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 48px 0;
}

.section-light-accent {
    background-color: var(--color-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: relative;
    padding: 15px 10px;
    background-color: var(--color-background);
    box-shadow: var(--shadow-subtle);
}

.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;
    z-index: 100;
    color: var(--color-dark);
}

.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(--color-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 .nav-list a {
    color: var(--color-text);
    font-weight: 500;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-background);
    box-shadow: var(--shadow-subtle);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.mobile-nav li a {
    color: var(--color-dark);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Hero Section: Floating Card */
.hero-section-floating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 0;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('img/bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-floating-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-subtle);
    border-radius: var(--border-radius);
}

.hero-floating-card h1 {
    color: var(--color-dark);
}

.hero-floating-card p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* Benefits Section */
.benefits-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-background);
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.card-title {
    margin-top: 0;
    margin-bottom: 12px;
}

/* Checklist Section */
.checklist-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.checkmark {
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-dark), #1a1f41);
    color: white;
}

.cta-banner-content {
    text-align: center;
}

.cta-banner-content h2 {
    color: white;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.cta-banner-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.cta-banner-content .btn-secondary {
    color: white;
    border-color: white;
}
.cta-banner-content .btn-secondary:hover {
    background: white;
    color: var(--color-dark);
}

/* Testimonials Section */
.testimonials-container-vertical {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-light-gray);
    padding: 24px;
    border-left: 4px solid var(--color-primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: #ccc;
    border-radius: 50%;
    margin-right: 16px;
}

.testimonial-name {
    font-weight: bold;
    margin: 0;
}

.testimonial-rating {
    color: var(--color-primary);
}
.testimonial-text {
    font-style: italic;
    margin: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid #ddd;
}
.comparison-table th {
    background-color: var(--color-dark);
    color: white;
}
.comparison-table td {
    background-color: white;
}
.comparison-table tbody tr:nth-child(even) td {
    background-color: var(--color-light-gray);
}
.check-mark { color: #27ae60; font-weight: bold; }
.cross-mark { color: #c0392b; font-weight: bold; }

/* Program Page: Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-accent);
    top: 0;
    bottom: 0;
    left: 24px;
}
.timeline-item {
    padding: 10px 40px 30px 70px;
    position: relative;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 3px solid var(--color-background);
    top: 20px;
    left: 15px;
    z-index: 1;
}
.timeline-title {
    margin-top: 0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(45deg, var(--color-accent), #fff1eb);
    text-align: center;
    padding: 60px 0;
}
.page-title {
    margin-bottom: 16px;
}
.page-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Image Feature Section */
.image-feature-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Page: Storytelling */
.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 60px;
}
.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.form-title, .info-title {
    margin-top: 0;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: calc(100% - 24px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 1rem;
}
.form-submit-btn {
    width: 100%;
}
.info-block {
    margin-bottom: 24px;
}
.info-block h3 {
    margin-bottom: 8px;
    color: var(--color-primary);
}
.info-block p {
    margin: 0;
}

/* Legal & Thank You Pages */
.legal-content, .thank-you-section {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h1, .legal-content h2 {
    margin-top: 32px;
}
.text-center { text-align: center; }
.thank-you-actions { margin-top: 40px; }
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: #e0e0e0 !important;
    padding: 48px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer-heading {
    color: white !important;
    margin-bottom: 16px;
    font-size: 1.2rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a, .footer-column a {
    color: #e0e0e0 !important;
}
.footer-links a:hover, .footer-column a:hover {
    color: var(--color-primary) !important;
}
.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid #333;
}
.footer-bottom p {
    margin: 0;
    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(--color-dark);
    color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--color-primary); font-weight: bold; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}
.cookie-btn-accept { background-color: var(--color-primary); color: white; }
.cookie-btn-accept:hover { background-color: var(--color-primary-dark); }
.cookie-btn-decline { background-color: #555; color: white; }
.cookie-btn-decline:hover { background-color: #777; }

/* Media Queries (Mobile-First) */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger,
    .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); }
}

@media (min-width: 600px) {
    .benefits-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .checklist-container { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .benefits-grid-3col { grid-template-columns: repeat(3, 1fr); }
    .image-feature-container { grid-template-columns: 1fr 1fr; }
    .story-block { grid-template-columns: 1fr 1fr; }
    .story-block-reverse .story-image-wrapper { order: 2; }
    .story-block-reverse .story-content { order: 1; }
    .contact-layout { grid-template-columns: 2fr 1fr; }
}

@media (min-width: 992px) {
    .footer-container { grid-template-columns: repeat(4, 1fr); }
}

@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; }
}