/* CLAC 2026 - Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #264653; /* Dark Navy */
    --accent: #E86C45;  /* Orange */
    --teal: #2A9D8F;    /* Teal */
    --sand: #FDFBF7;    /* Beige */
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --text-body: #4b5563;
    
    --radius: 12px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary { background-color: var(--accent); color: var(--white); }
.btn-primary:hover { background-color: #d65a32; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-small { padding: 8px 16px; font-size: 0.9rem; }

/* NAVBAR */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--primary); }
.logo img { height: 35px; width: auto; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.nav-links a:hover { color: var(--accent); }
.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--primary); }

/* HERO SECTIONS */
.hero {
    position: relative;
    min-height: 85vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white); /* Default white text */
    overflow: hidden;
    padding: 80px 20px;
}
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: #ffffff !important; /* Force white text */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-content h1, .hero-content p, .hero-content div {
    color: #ffffff !important; /* Force children white */
}
.hero-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Specific weights for Index Hero */
.hero-line-1 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.hero-line-2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--accent) !important; }
.hero-line-3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 2rem; }
.hero-line-4 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero-line-5 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.hero-line-6 { font-size: 1rem; font-weight: 400; opacity: 0.9; line-height: 1.5; }

.page-header {
    background-color: var(--gray-light);
    padding: 60px 0 40px;
    text-align: center;
}

/* SECTIONS Generic */
.section { padding: 80px 0; }
.section-alt { background-color: var(--gray-light); }

/* CARDS & GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--primary); }
.card h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 1.5rem; flex-grow: 1; }

/* FEATURE SPLIT (ZigZag) */
.split-wrap { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.split-wrap:nth-child(even) { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-media { flex: 1; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* SCHEDULE */
.schedule-block {
    background: var(--white);
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.schedule-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid var(--accent);
    text-align: center;
    z-index: 5;
    width: 80%;
    max-width: 300px;
}
.schedule-blur { padding: 30px; filter: blur(8px); opacity: 0.5; pointer-events: none; }
.schedule-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; }

/* FOOTER */
footer { background-color: var(--primary); color: var(--white); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 15px; font-size: 1rem; text-transform: uppercase; }
.footer-col a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }

/* RESPONSIVE OVERRIDES */
@media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow); text-align: center; }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .split-wrap, .split-wrap:nth-child(even) { flex-direction: column; gap: 30px; }
}
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero { padding: 60px 15px; }
    .hero-logo { max-width: 180px; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .card { padding: 20px; }
    .schedule-row { flex-direction: column; }
    .btn { width: 100%; margin-bottom: 10px; }
    .hero-content .btn { width: auto; }
}
