:root {
    --csitt-primary: #1a3a5c;
    --csitt-gold: #c8a444;
    --csitt-red: #c0392b;
    --csitt-green: #27ae60;
}

body { font-family: 'Segoe UI', system-ui, sans-serif; }

/* HERO */
.hero-csitt {
    background: linear-gradient(135deg, var(--csitt-primary) 0%, #2c5f8a 60%, var(--csitt-primary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.hero-csitt .hero-body { position: relative; z-index: 1; }

/* STATS */
.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .2s;
    border-top: 4px solid var(--csitt-gold);
}
.stat-box:hover { transform: translateY(-4px); }
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--csitt-primary);
    line-height: 1;
}
.stat-label { color: #666; font-size: .9rem; margin-top: .3rem; }

/* NEWS CARDS */
.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: box-shadow .2s, transform .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); transform: translateY(-3px); }
.news-card .card-image img { height: 200px; object-fit: cover; width: 100%; }
.news-card .card-content { flex: 1; }

/* GALLERY */
.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb .overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
    color: #fff; font-size: 1.5rem;
}
.gallery-thumb:hover .overlay { opacity: 1; }

/* PALMARES */
.palmares-item {
    border-left: 5px solid var(--csitt-gold);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.palmares-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--csitt-gold);
    line-height: 1;
}

/* SECTION TITLES */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--csitt-primary);
    margin-bottom: .5rem;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--csitt-gold);
    border-radius: 2px;
    margin: 0 auto 2rem;
}

/* TARIF CARDS */
.tarif-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .2s;
    overflow: hidden;
    border-top: 5px solid var(--csitt-primary);
}
.tarif-card:hover { transform: translateY(-4px); }
.tarif-price { font-size: 2rem; font-weight: 800; color: var(--csitt-primary); }
.tarif-currency { font-size: 1rem; font-weight: 400; color: #888; }

/* CONTACT */
.contact-info-box {
    background: var(--csitt-primary);
    color: #fff;
    border-radius: 12px;
    padding: 2rem;
}
.contact-info-box a { color: #f0c040; }

/* SCHEDULES */
.schedule-row {
    display: flex; gap: 1rem;
    padding: .6rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.schedule-row:last-child { border-bottom: none; }

/* NAVBAR active */
.navbar-item.is-active { color: #f0c040 !important; font-weight: 600; }
.navbar.is-dark .navbar-item:hover { color: #f0c040; }

/* BREADCRUMB */
.breadcrumb-wrap {
    background: #f5f7fa;
    padding: .75rem 0;
    border-bottom: 1px solid #e8e8e8;
}

/* ALBUM COVER */
.album-cover {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    background: #eee;
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.album-cover:hover img { transform: scale(1.05); }
.album-cover .album-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1rem;
}
.album-cover .album-title { color: #fff; font-weight: 700; font-size: 1.1rem; }
