/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Hauser Bold';
    src: url('../fonts/Hauser Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px; /* Add padding to account for fixed navbar */
    position: relative;
    background-attachment: fixed; /* For background images */
    background-position: center; /* Center background images */
    background-size: cover; /* Cover the entire body */
    background-repeat: no-repeat; /* No repeating backgrounds */
}

/* This ensures that background images appear below the navbar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-attachment: inherit;
    background-position: inherit;
    background-size: inherit;
    background-repeat: inherit;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.57rem 5%;
    background-color: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px; /* Explicitly set navbar height */
}

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    margin: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: color 0.3s;
    font-family: 'Hauser Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c41e3a;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.navbar-logo {
    height: 68px;
    width: auto;
    display: block;
}

.navbar-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.cta-navbar-button {
    background-color: #c41e3a;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
    margin-left: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-navbar-button:hover {
    background-color: #a31a2e;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 79.2vh;
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url('../images/main_bckgrnd.webp') center/cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-logo img {
    max-width: 570px;
    width: 100%;
    opacity: 0.85;
}

.hero-content {
    flex: 2;
    text-align: right;
    max-width: 700px;
    margin-left: auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c41e3a;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #a31a2e;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.learn-more {
    display: inline-block;
    margin-top: 2rem;
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #c41e3a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 0.5rem 2%;
        height: auto;
        justify-content: space-between;
    }
    .navbar-logo {
        height: 34px;
        max-width: 90px;
    }
    .logo {
        z-index: 1001; /* Ensure logo stays above the mobile menu */
    }
    .nav-links {
        position: fixed;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        background: #1a1a1a;
        width: 80%;
        margin: 0;
        padding: 1rem 0;
        display: none;
        top: 0;
        right: -80%;
        height: 100vh;
        z-index: 999;
        box-shadow: -4px 0 8px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
    }
    .nav-links.active {
        display: flex;
        right: 0;
    }
    .dropdown-content {
        position: relative;
        width: 100%;
        box-shadow: none;
        margin-top: 5px;
    }
    .dropdown {
        width: 100%;
        text-align: left;
        padding-left: 1rem;
    }
    .dropdown-content a {
        padding: 10px 0 10px 1rem;
        font-size: 0.8rem;
    }
    .hamburger {
        display: flex;
        margin-left: auto;
        z-index: 1001;
    }
    .navbar-cta {
        display: none;
    }
    .hero-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .hero-logo img {
        max-width: 220px;
        height: auto;
    }
    .hero-content {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .features {
        grid-template-columns: 1fr;
        padding: 2rem 2%;
    }
    .about-container,
    .instructors-grid,
    .details-grid,
    .facility-grid,
    .transport-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    .about-section,
    .mission-section,
    .partner-section,
    .training-course-sections,
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .calendar-double {
        flex-direction: column;
        align-items: center;
    }
    
    .calendar-single {
        width: 100%;
        max-width: 100%;
    }
    
    .calendar-table {
        font-size: 0.8rem;
    }
    
    .calendar-table th, .calendar-table td {
        padding: 0.6rem 0.3rem;
        min-width: 40px;
        height: 40px;
    }
    
    .calendar-event-logo {
        width: 30px;
        height: 30px;
    }
    
    .event-cell .calendar-event-logo {
        width: 30px;
        height: 30px;
    }
    
    .calendar-event-btn {
        padding: 3px 8px;
        font-size: 0.7em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    main {
        margin-top: 50px;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .page-title p {
        font-size: 1rem;
    }
    
    .calendar-month {
        font-size: 2.2em !important;
    }
    
    .calendar-nav {
        position: static !important;
        margin-bottom: 15px;
    }
    
    .calendar-header {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.about-content {
    animation: fadeIn 1s ease-out;
}

/* About Page Styles */
.about-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/about-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-section {
    padding: 5rem 5%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-section {
    background-color: #f8f9fa;
    padding: 5rem 5%;
    text-align: center;
}

.mission-container {
    max-width: 800px;
    margin: 0 auto;
}

.mission-container h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.instructors-section {
    padding: 5rem 5%;
    text-align: center;
}

.instructors-section h2 {
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instructor-card {
    background-color: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.instructor-card:hover {
    transform: translateY(-5px);
}

.instructor-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 3px solid #f8f9fa;
}

.instructor-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.instructor-title {
    color: #c41e3a;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
    }
}

/* Training Page Styles */
.training-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/training-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 0;
}

.training-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.training-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.package-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    padding: 2rem;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.package-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    color: #c41e3a;
    font-weight: bold;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.package-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-content ul li:before {
    content: "•";
    color: #c41e3a;
    position: absolute;
    left: 0;
}

.package-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #c41e3a;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 1.5rem;
}

.package-button:hover {
    background-color: #a31a2e;
}

.training-details {
    padding: 5rem 5%;
    background-color: #fff;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.details-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-item {
    text-align: center;
    padding: 2rem;
}

.detail-item i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.detail-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .training-hero-content h1 {
        font-size: 2rem;
    }

    .training-packages {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}

/* Location Page Styles */
.location-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/location-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.location-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-info {
    padding: 5rem 5%;
    background-color: #fff;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.address-card {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.address-card h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.address-details,
.contact-details {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.address-details i,
.contact-details i {
    color: #c41e3a;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.map-container {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.facility-info {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.facility-container {
    max-width: 1200px;
    margin: 0 auto;
}

.facility-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.facility-item {
    background-color: #fff;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.facility-item i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.facility-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.directions {
    padding: 5rem 5%;
    background-color: #fff;
}

.directions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.directions-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transport-item {
    background-color: #fff;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.transport-item i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.transport-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
    }

    .location-hero-content h1 {
        font-size: 2rem;
    }

    .facility-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 0;
    padding-top: 0;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/contact-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #c41e3a;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-label a {
    color: #c41e3a;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #a31a2e;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #fff;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.training-calendar {
    padding: 4rem 5%;
    background: #fff;
    text-align: center;
}

.training-calendar h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.calendar-table th, .calendar-table td {
    border: 1px solid #e0e0e0;
    padding: 1.2rem 0.5rem;
    text-align: center;
    font-size: 1.1rem;
    min-width: 70px;
    height: 70px;
}

.calendar-table th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.calendar-event-logo {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto 0.5rem auto;
}

main {
    margin-top: 68px;
    padding-top: 0;
}

.calendar-double {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.calendar-single {
    flex: 1 1 350px;
    max-width: 500px;
}

.calendar-month {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-align: center;
}

.event-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    margin-top: -0.5rem;
}

.event-date {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.1rem;
}

.event-cell .calendar-event-logo {
    width: 64px;
    height: 64px;
    margin: 0.2rem auto 0.4rem auto;
}

.calendar-event-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #c41e3a;
    color: white;
    text-decoration: none;
    padding: 5px 12px;
    font-size: 0.9em;
    border-radius: 0;
}

.training-course-sections {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.course-section {
    background-color: #fff;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.course-section-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.course-section-text {
    flex: 1;
}

.course-section-image {
    flex: 1;
    max-width: 500px;
}

.course-section-image img {
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.course-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.course-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .course-section-content {
        flex-direction: column;
    }
    
    .course-section-image {
        order: -1;
        max-width: 100%;
    }
    
    .course-section {
        padding: 2rem;
    }
    
    .course-section h2 {
        font-size: 2rem;
    }
}

/* Dropdown Menu */
.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-family: 'Hauser Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add this section to fix various page sections */
.courses-page, .about-hero, .training-hero, .location-hero, .contact-hero, .training-calendar {
    margin-top: 0; /* Reset margin since we have body padding */
    padding-top: 0;
    position: relative;
    z-index: 1; /* Lower z-index than navbar */
}

/* Add specific styling for courses-page */
.courses-page {
    padding-top: 10px; /* Reduced top padding */
}

.courses-page .intro-section {
    padding-top: 20px; /* Adjust padding for intro section */
} 