/* CLAC 2026 Design System */
:root {
    --clac-orange: #E86C45;
    --clac-yellow: #F4A261;
    --clac-teal: #2A9D8F;
    --clac-blue: #264653;
    --clac-sand: #FDFBF7;
    --clac-white: #ffffff;
    --clac-gray: #f4f4f4;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--clac-sand);
    color: var(--clac-blue);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; color: var(--clac-blue); }
h2 { font-size: 2rem; color: var(--clac-teal); }
h3 { font-size: 1.5rem; color: var(--clac-orange); }

a { text-decoration: none; color: var(--clac-teal); transition: 0.3s; }
a:hover { color: var(--clac-orange); }
ul { list-style-position: inside; margin-bottom: 1rem; }

/* Navigation & Logo */
header {
    background-color: var(--clac-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 60px; width: auto; }
.logo-text { font-size: 1.8rem; font-weight: bold; color: var(--clac-orange); }

nav ul { display: flex; list-style: none; gap: 20px; margin-bottom: 0; }
nav ul li a { color: var(--clac-blue); font-weight: 600; font-size: 0.95rem; }
nav ul li a:hover, nav ul li a.active { color: var(--clac-orange); border-bottom: 2px solid var(--clac-orange); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Layouts */
.container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }

/* Video Hero */
.video-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    color: white;
    text-align: center;
    border-radius: 0 0 0px 0px;
    margin-bottom: 40px;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(38, 70, 83, 0.75);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.hero-overlay h1 { color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--clac-orange);
    color: var(--clac-white);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
}
.btn:hover { background-color: var(--clac-yellow); color: var(--clac-blue); }

.btn-small { background-color: var(--clac-teal); padding: 8px 16px; font-size: 0.9rem; margin: 5px; color: white; }
.btn-small:hover { color: white; opacity: 0.9; }

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }

.card {
    background: var(--clac-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 5px solid var(--clac-teal);
}

/* Schedule Blur Logic */
.schedule-day-wrapper {
    position: relative;
    margin-bottom: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.schedule-blurred-content {
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    padding: 20px;
    background: white;
}

.schedule-overlay-msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border: 2px solid var(--clac-orange);
    border-radius: 8px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 80%;
}

.schedule-item {
    padding: 15px;
    border-left: 4px solid var(--clac-orange);
    margin-bottom: 10px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
}

/* Feature Sections */
.feature-split { display: flex; flex-wrap: wrap; gap: 40px; margin: 60px 0; align-items: center; }
.feature-text, .feature-image { flex: 1; min-width: 300px; }
img { max-width: 100%; height: auto; border-radius: 8px; }

/* Hybrid Footer Styles */
footer {
    background: var(--clac-blue);
    color: var(--clac-white);
    padding: 60px 20px 20px;
    margin-top: 60px;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 40px; /* Adjust size of logo_acro.png */
    width: auto;
    margin-bottom: 20px;
    border-radius: 0; /* Override default border radius for this logo */
}

.footer-brand h3 {
    color: var(--clac-white);
    font-size: 1.2rem;
    margin-top: 10px;
}

.footer-info h4, .footer-contact h4 {
    color: var(--clac-yellow);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p, .footer-contact p {
    margin-bottom: 15px;
    color: #ddd;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, footer a {
    color: var(--clac-yellow);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover, footer a:hover {
    color: var(--clac-orange);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; width: 100%; position: absolute; top: 70px; left: 0; background: white; padding: 20px; box-shadow: 0 5px 5px rgba(0,0,0,0.1); }
    nav ul.show { display: flex; }
    .mobile-menu-btn { display: block; }
    .schedule-item { flex-direction: column; }
    .hero-overlay h1 { font-size: 1.8rem; }
    .footer-content { text-align: center; }
    .footer-brand { align-items: center; }
}
