/* --- Global Styles & Variables (Updated) --- */
:root {
    --primary-blue: #040D21; /* Very Dark Navy Blue */
    --primary-gold: #c5a55d; /* Gold */
    --light-text: #f0f0f0;
    --dark-text: #333333;
    --background-light: #ffffff;
    --background-dark: #f4f4f4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: var(--background-light);
    color: var(--dark-text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--primary-blue);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--primary-blue);
    padding: 1px 0;
    border-bottom: 3px solid var(--primary-gold);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 130px; /* You can adjust this value */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: var(--light-text);
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover, header nav ul li a.active {
    color: var(--primary-gold);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-blue);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-blue);
}


/* --- Page Sections --- */
main section {
    padding: 60px 0;
}

.hero {
    background-color: var(--primary-blue);
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-buttons .btn {
    margin: 0 10px;
}

.intro {
    text-align: center;
    background-color: var(--background-light);
}

.intro h2, .upcoming-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.services {
    background-color: var(--background-dark);
}

.services .container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-box {
    background-color: var(--background-light);
    padding: 30px;
    text-align: center;
    flex-basis: 45%;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.course-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.course-item {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    flex-basis: 30%;
}

.btn-view-all {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

/* --- Calendar Page Styles --- */
.page-header {
    background-color: var(--background-dark);
    text-align: center;
    padding: 40px 0;
}

/* --- Contact Page Styles --- */
.contact-section .container {
    display: flex;
    gap: 50px;
}
.contact-form {
    flex: 2;
}
.contact-details {
    flex: 1;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-details p {
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-blue);
    color: var(--light-text);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* --- Google Calendar Embed Styles --- */
.google-calendar-embed {
    padding: 20px 0;
    text-align: center; /* This centers the calendar */
}

.google-calendar-embed iframe {
    max-width: 100%; /* Ensures it's responsive on mobile */
    border-radius: 8px; /* Gives it slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Adds a subtle shadow */
	pointer-events: none; /* This is the new line that disables all clicks */
}

/* --- Call-to-action link on calendar page --- */
.cta-link {
    font-weight: bold;
    font-size: 1.1em; /* Makes it slightly larger */
    margin-top: 20px;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 5px;
}

.cta-link a {
    text-decoration: underline;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    header nav ul {
        margin-top: 15px;
    }
    .services .container, .contact-section .container {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 36px;
    }
    .google-calendar-embed {
        padding: 10px; /* less padding on mobile */
    }
}
/* --- Partners Page Styles --- */
.partners-section {
    padding-top: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.partner-card {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.partner-card h3 {
    color: var(--primary-gold);
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.partner-logo {
    max-height: 80px;
    width: auto;
    max-width: 250px;
    margin: 0 auto;
}

.partner-card .btn-secondary {
    margin-top: 20px;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.partner-card .btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }
}