body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ====================== HEADER ====================== */
.header {
    border-bottom: 4px solid #00b4d8;
    padding: 8px 0;
    background: white;
}

.logo-row img {
    max-height: 72px;
    transition: transform 0.3s;
}

.logo-row img:hover {
    transform: scale(1.06);
}

/* ====================== NAVIGATION ====================== */
.nav-link {
    padding: 12px 20px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.05rem;
}

.nav-link:hover,
.nav-link.active {
    color: #00b4d8 !important;
    transform: translateY(-2px);
}

/* ====================== HERO ====================== */
.hero {
    height: 65vh;
    min-height: 420px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/Homepage Gallery/NoahAidenGroup.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* ====================== PHILOSOPHY BANNER ====================== */
.philosophy-banner {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ====================== BUTTONS ====================== */
.btn-shark {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 180, 216, 0.4);
}

.btn-shark:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 180, 216, 0.5);
}

/* ====================== CARDS & IMAGES ====================== */
.card {
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,180,216,0.25);
}

.program-card img, .hero-img, .action-img {
    max-height: 240px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.instructor-img {
    max-height: 380px;
    object-fit: cover;
}

/* ====================== SCHEDULE ====================== */
.schedule-table th, .schedule-table td {
    padding: 12px 10px;
    vertical-align: middle;
}

.schedule-table th {
    background-color: #00b4d8;
    color: white;
    font-weight: 700;
}

/* ====================== SECTION TITLES ====================== */
.section-title {
    font-family: 'Playfair Display', serif;
    color: #0077b6;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    width: 90px;
    height: 4px;
    background: #f4a261;
    display: block;
    margin: 12px auto;
}

/* ====================== FOOTER ====================== */
.footer {
    background: linear-gradient(#0077b6, #00b4d8);
    color: white;
}

/* ====================== MOBILE RESPONSIVE ====================== */
@media (max-width: 768px) {
    .hero { 
        height: 55vh; 
        min-height: 380px; 
    }
    
    .program-card img, .hero-img, .action-img { 
        max-height: 200px; 
    }
    
    .instructor-img {
        max-height: 280px;
    }
}
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Ensure image loads */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    z-index: -1;
}