/* Variables */
:root {
    --navy: #0D1B2A;
    --deep-slate: #1B263B;
    --antique-gold: #C5A059;
    --platinum: #E0E1DD;
    --white: #ffffff;
    --text-color: var(--navy);
    --section-bg-dark: var(--navy);
    --section-bg-light: var(--platinum);
    --accent-color: var(--antique-gold);
    --primary-color: var(--navy);
}

/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--platinum);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-slate);
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 3rem;
    
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--antique-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primaryy {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--deep-slate);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--deep-slate);
}

.btn-accent:hover {
    background-color: var(--antique-gold);
    filter: brightness(1.1);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--navy);
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--antique-gold);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.6)), url('land.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
   
}

/* About & Values */
.intro-text {
    font-size: 1.2rem;
    width:95%;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    text-align: center;
    border-top: 4px solid var(--navy);
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.value-card h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--deep-slate);
    font-weight: 500;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
}

.icon-container {
    background-color: var(--accent-color);
    color: var(--navy);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.icon-container .material-icons {
    font-size: 2.5rem;
}

/* Program Section */
.program-bg {
    background-color: var(--section-bg-dark);
    color: var(--white);
}

.program-bg .section-title {
    color: var(--accent-color);
    border-color: var(--white);
}

.program-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.program-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    background-color: var(--white);
    color: var(--navy);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden; /* To contain the badge */
}

.program-card .card-content {
    padding: 30px 20px;
    padding-top: 50px; /* To make space for the badge */
}

.program-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.program-card ul li .material-icons {
    color: var(--accent-color);
    margin-right: 10px;
}

.month-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--navy);
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

/* Accordion/FAQ */
.accordion-container {
    max-width: 700px;
    margin: 20 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-toggle {
    background: none;
    border: none;
    width: 90%;
    padding: 15px 0;
    font-size: 1.1rem;
    text-align: left;
    font-weight: 500;
    color: var(--deep-slate);
    cursor: pointer;
    position: relative;
    margin-left: 15px;
    margin-right: 10px;
    font-family: 'Roboto', sans-serif;
}

.accordion-toggle::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-item.active .accordion-toggle::after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    font-size: 0.95rem;
    color: #555;
}

.accordion-item.active .accordion-content {
    max-height: 150px; /* Adjust as needed */
    padding: 15px 15px 15px 0;
}

/* Contact Form */
.contact-bg {
    background-color: var(--section-bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy);
    font-weight: 500;
}

.form-field {
    margin-bottom: 20px;
    width: 100%;
}

.form-field.full-width {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--deep-slate);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Important for padding and border */
    font-family: 'Roboto', sans-serif;
}

.form-field textarea {
    resize: vertical;
}

.btn-large.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--deep-slate);
    color: rgba(255,255,255,0.6);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* In a real app, toggle this with JS */
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
        margin-left: 10px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-field {
        margin-bottom: 15px;
    }
}


/* Mobile Responsiveness & Navigation */
@media (max-width: 768px) {
    /* Adjust Hero for Mobile */
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    .hero-content p {
        font-size: 1.1rem;
    }

    /* Modern Mobile Menu Styling */
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        width: 80%;
        background-color: var(--navy); /* Match your brand navy */
        position: absolute;
        top: 110px; /* Aligns with navbar height */
        left: 90px;
        padding: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }

    /* The 'Active' state with a simple entrance animation */
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links li a {
        display: block;
        padding: 20px;
        width: 100%;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    /* Hamburger Button Styling */
    .menu-toggle {
        display: block;
        font-size: 2.2rem;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
        transition: color 0.3s ease;
        padding-right: 10px;
    }

    .menu-toggle:hover {
        color: var(--antique-gold);
    }
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keep Desktop visible */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav-links {
        display: flex !important;
    }
}


/* --- Add to the bottom of styles.css --- */

/* Page Header for sub-pages */
.page-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 40px 20px 60px 20px; /* Top padding accounts for fixed navbar */
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Google Form Container */
.google-form-wrapper {
    background: var(--white);
    max-width: 800px;
    margin: -40px auto 0 auto; /* Negative margin pulls it up into the header slightly */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Make the iframe responsive */
.google-form-wrapper iframe {
    width: 100%;
    display: block;
    /* You can adjust height here or in the HTML depending on your form length */
    min-height: 800px; 
}