/* ===================================

   THEME.CSS - Premium Design System

   Western Province Department of Education

   =================================== */



:root {

    --ink: #1a0d0d;

    --muted: #6b5b5f;

    --navy: #1a2a3a;

    --deep: #5c1e1e;

    --teal: #0f4f5f;

    --gold: #d4a574;

    --sand: #f6f1e7;

    --mist: #eef2f5;

    --card: #ffffff;

    --radius: 20px;

    --shadow: 0 20px 60px rgba(15, 31, 43, 0.12);

    --shadow-premium: 0 25px 80px rgba(15, 31, 43, 0.18);

    --shadow-hover: 0 35px 100px rgba(15, 31, 43, 0.25);

    --glass-light: rgba(255, 255, 255, 0.1);

    --glass-border: rgba(255, 255, 255, 0.2);

}



/* ===== GLOBAL STYLING ===== */



body {

    font-family: "Source Sans 3", "Segoe UI", sans-serif;

    background: linear-gradient(135deg, #0a0505 0%, #1f0a0a 50%, #0f1a1f 100%);

    color: var(--ink);

    min-height: 100vh;

}



h1, h2, h3, h4 {

    font-family: "Playfair Display", "Georgia", serif;

    letter-spacing: -0.02em;

    font-weight: 700;

}



h1 {

    font-size: 3.5rem;

}



h2 {

    font-size: 2.5rem;

}



h3 {

    font-size: 1.8rem;

}



h4 {

    font-size: 1.3rem;

}



/* ===== PREMIUM HEADER ===== */



.site-header {

    background: linear-gradient(135deg, rgba(26, 42, 58, 0.95) 0%, rgba(92, 30, 30, 0.8) 100%);

    color: var(--sand);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);

}



.header-logo-premium {

    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;

    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));

}



.header-logo-premium:hover {

    transform: scale(1.08) rotate(-2deg);

    filter: drop-shadow(0 8px 20px rgba(212, 165, 116, 0.4));

}



.premium-lang-btn {

    position: relative;

    border: 1.5px solid rgba(212, 165, 116, 0.6);

    background: rgba(212, 165, 116, 0.08);

    color: var(--sand);

    padding: 0.7rem 1.5rem;

    border-radius: 12px;

    font-weight: 600;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    overflow: hidden;

}



.premium-lang-btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);

    transition: left 0.6s ease;

}



.premium-lang-btn:hover {

    background: rgba(212, 165, 116, 0.2);

    border-color: rgba(212, 165, 116, 1);

    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);

    transform: translateY(-2px);

}



.premium-lang-btn:hover::before {

    left: 100%;

}



/* ===== PREMIUM STICKY NAVIGATION ===== */



.premium-nav {

    position: sticky;

    top: 0;

    z-index: 50;

    transition: all 0.4s ease;

}



.premium-nav-backdrop {

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg, rgba(26, 42, 58, 0.98) 0%, rgba(92, 30, 30, 0.95) 100%);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(212, 165, 116, 0.2);

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.25);

}



.premium-nav-link {

    position: relative;

    color: rgba(246, 241, 231, 0.95);

    padding: 0.6rem 1.2rem;

    border-radius: 10px;

    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

    font-weight: 600;

    letter-spacing: 0.5px;

    background: transparent;

    text-decoration: none;

    display: inline-block;

}



.premium-nav-link::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    width: 0;

    height: 2px;

    background: linear-gradient(90deg, transparent, #d4a574, transparent);

    transform: translateX(-50%);

    transition: width 0.35s ease;

}



.premium-nav-link:hover {

    background: rgba(212, 165, 116, 0.15);

    color: rgba(255, 255, 255, 1);

    text-decoration: none;

}



.premium-nav-link:hover::after {

    width: 100%;

}



.premium-nav-search-container {

    position: relative;

    display: flex;

    align-items: center;

}



.premium-nav-search {

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(212, 165, 116, 0.4);

    color: rgba(246, 241, 231, 0.95);

    padding: 0.65rem 1.2rem 0.65rem 2.8rem;

    border-radius: 25px;

    font-size: 0.9rem;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    width: 200px;

    backdrop-filter: blur(10px);

}



.premium-nav-search::placeholder {

    color: rgba(246, 241, 231, 0.6);

}



.premium-nav-search:focus {

    outline: none;

    background: rgba(255, 255, 255, 0.15);

    border-color: rgba(212, 165, 116, 0.8);

    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);

    width: 260px;

    color: rgba(255, 255, 255, 1);

}



.premium-nav-search-icon {

    position: absolute;

    left: 1rem;

    color: rgba(212, 165, 116, 0.7);

    font-size: 0.9rem;

    transition: all 0.3s ease;

}



.premium-nav-search:focus ~ .premium-nav-search-icon {

    color: rgba(212, 165, 116, 1);

}



/* ===== PREMIUM SITE NAV ===== */



.site-nav {

    background: transparent;

    border-top: none;

}



.nav-link {

    color: #e4eef2;

    padding: 0.5rem 1rem;

    border-radius: 999px;

    transition: all 0.3s ease;

    font-weight: 600;

}



.nav-link:hover {

    background: rgba(255, 255, 255, 0.14);

}



.nav-link--active {

    background: rgba(255, 255, 255, 0.2);

}



/* ===== PREMIUM CARDS & GLASS MORPHISM ===== */



.premium-card,

.section-card {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(212, 165, 116, 0.2);

    border-radius: var(--radius);

    box-shadow: var(--shadow-premium);

    padding: 2.5rem;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    position: relative;

    overflow: hidden;

}



.premium-card::before,

.section-card::before {

    content: '';

    position: absolute;

    top: -50%;

    right: -50%;

    width: 300px;

    height: 300px;

    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;

}



.premium-card:hover,

.section-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);

    border-color: rgba(212, 165, 116, 0.4);

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);

}



.premium-card:hover::before,

.section-card:hover::before {

    opacity: 1;

}



/* ===== PREMIUM BUTTONS ===== */



.btn-primary {

    background: linear-gradient(135deg, #d4a574 0%, #c9945f 100%);

    color: #1a0d0d;

    padding: 0.75rem 1.8rem;

    border-radius: 12px;

    font-weight: 700;

    letter-spacing: 0.05em;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    cursor: pointer;

    text-decoration: none;

    display: inline-block;

    border: none;

    position: relative;

    overflow: hidden;

}



.btn-primary::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, 0.2);

    transition: left 0.4s ease;

}



.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);

}



.btn-primary:hover::before {

    left: 100%;

}



.btn-ghost {

    border: 1.5px solid rgba(246, 241, 231, 0.5);

    color: var(--sand);

    padding: 0.7rem 1.5rem;

    border-radius: 12px;

    font-weight: 600;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    background: rgba(212, 165, 116, 0.05);

    cursor: pointer;

    text-decoration: none;

    display: inline-block;

    position: relative;

    overflow: hidden;

}



.btn-ghost::before {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(212, 165, 116, 0.15);

    transform: translateX(-100%);

    transition: transform 0.4s ease;

}



.btn-ghost > * {

    position: relative;

    z-index: 1;

}



.btn-ghost:hover {

    background: rgba(212, 165, 116, 0.15);

    color: #ffffff;

    border-color: rgba(212, 165, 116, 0.8);

    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.25);

    transform: translateY(-2px);

}



.btn-ghost:hover::before {

    transform: translateX(0);

}



/* ===== LOGO MARK ===== */



.logo-mark {

    width: 56px;

    height: 56px;

    border-radius: 999px;

    border: 2px solid rgba(255, 255, 255, 0.4);

    object-fit: cover;

}



.site-eyebrow {

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 0.7rem;

    color: rgba(255, 255, 255, 0.7);

}



.site-slogan {

    color: rgba(255, 255, 255, 0.85);

    font-style: italic;

}



/* ===== HERO SECTION ===== */



.hero {

    background-image: linear-gradient(120deg, rgba(12, 42, 58, 0.7), rgba(92, 30, 30, 0.65)), url("officefront.jpg?v=20260217");

    background-size: cover;

    background-position: center 78%;

    background-repeat: no-repeat;

    border-radius: 32px;

    padding: clamp(3rem, 5vw, 5rem);

    color: var(--sand);

    display: grid;

    gap: 2.5rem;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);

    position: relative;

    overflow: hidden;

}



.hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.1) 0%, transparent 70%);

    pointer-events: none;

}



.hero-kicker {

    text-transform: uppercase;

    letter-spacing: 0.18em;

    font-size: 0.75rem;

    color: #d4a574;

    text-shadow: 1px 1px 4px rgba(128, 0, 0, 0.5);

    font-weight: 700;

    position: relative;

    z-index: 1;

}



.hero-title {

    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 3.6vw, 3.4rem);

    line-height: 1.1;

    font-weight: 800;

    position: relative;

    z-index: 1;

}



.hero-subtitle {

    color: rgba(246, 241, 231, 0.9);

    font-size: 3rem;

    max-width: 40rem;

    position: relative;

    z-index: 1;

}



.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 0.75rem;

    position: relative;

    z-index: 1;

}



/* ===== NOTICE CARD ===== */



.notice-card {

    background: linear-gradient(135deg, rgba(15, 118, 110, 0.15) 0%, rgba(15, 118, 110, 0.05) 100%);

    border-left: 4px solid #2f7d69;

    border: 1px solid rgba(47, 125, 105, 0.3);

    padding: 1rem 1.25rem;

    border-radius: 12px;

    color: #1f5a4b;

    backdrop-filter: blur(10px);

}



/* ===== LAYOUT ===== */



.content-grid {

    display: grid;

    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);

    gap: 3rem;

    margin-top: 4rem;

}



.link-grid a {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    border-radius: 20px;

    padding: 1.4rem 1.8rem;

    border: 1px solid rgba(212, 165, 116, 0.15);

    font-weight: 600;

    color: #ffffff;

    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    text-decoration: none;

    display: block;

    backdrop-filter: blur(10px);

    position: relative;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);

}



.link-grid a::before {

    content: '';

    position: absolute;

    top: -100%;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(180deg, rgba(212, 165, 116, 0.15) 0%, transparent 100%);

    transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

}



.link-grid a::after {

    content: '';

    position: absolute;

    inset: 0;

    background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.1) 0%, transparent 60%);

    opacity: 0;

    transition: opacity 0.5s ease;

}



.link-grid a:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);

    border-color: rgba(212, 165, 116, 0.5);

    color: #ffffff;

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);

}



.link-grid a:hover::before {

    top: 0;

}



.link-grid a:hover::after {

    opacity: 1;

}



.director-card img {

    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(15, 31, 43, 0.25);

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

}



.director-card img:hover {

    transform: scale(1.05) rotate(-1deg);

}



.quick-actions {

    display: grid;

    gap: 0.75rem;

    margin: 1rem 0 1.5rem;

}



.quick-actions a {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 0.5rem;

    text-decoration: none;

    color: var(--navy);

}



/* ===== CAROUSEL ===== */



.carousel-container {

    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: var(--shadow-premium);

}



.carousel-slide {

    display: none;

    width: 100%;

    transition: opacity 0.5s ease-in-out;

}



.carousel-slide.active {

    display: block;

    opacity: 1;

}



.carousel-button {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: linear-gradient(135deg, rgba(15, 31, 43, 0.7) 0%, rgba(92, 30, 30, 0.6) 100%);

    backdrop-filter: blur(10px);

    color: white;

    padding: 0.75rem;

    border-radius: 9999px;

    cursor: pointer;

    z-index: 10;

    font-size: 1.4rem;

    line-height: 1;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.carousel-button:hover {

    background: linear-gradient(135deg, rgba(15, 31, 43, 0.9) 0%, rgba(92, 30, 30, 0.8) 100%);

    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);

    transform: translateY(-50%) scale(1.1);

}



.carousel-button-prev {

    left: 1rem;

}



.carousel-button-next {

    right: 1rem;

}



.carousel-dots {

    position: absolute;

    bottom: 1rem;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 0.5rem;

    z-index: 10;

}



.carousel-dot {

    width: 10px;

    height: 10px;

    background: rgba(255, 255, 255, 0.4);

    border-radius: 9999px;

    cursor: pointer;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    border: 1px solid rgba(255, 255, 255, 0.3);

}



.carousel-dot.active {

    background: linear-gradient(135deg, #d4a574, #c9945f);

    transform: scale(1.3);

    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);

}



.carousel-dot:hover {

    background: rgba(255, 255, 255, 0.7);

    transform: scale(1.2);

}



.carousel-dot.active {

    background-color: white;

    transform: scale(1.2);

}



/* ===== SCROLLBARS ===== */



.announcements-scroll::-webkit-scrollbar,

.events-scroll::-webkit-scrollbar {

    width: 8px;

}



.announcements-scroll::-webkit-scrollbar-track,

.events-scroll::-webkit-scrollbar-track {

    background: #f1f1f1;

    border-radius: 10px;

}



.announcements-scroll::-webkit-scrollbar-thumb,

.events-scroll::-webkit-scrollbar-thumb {

    background: #9aa7b4;

    border-radius: 10px;

}



.announcements-scroll::-webkit-scrollbar-thumb:hover,

.events-scroll::-webkit-scrollbar-thumb:hover {

    background: #738290;

    cursor: pointer;

}



/* ===== ANIMATIONS ===== */



@keyframes rise {

    from {

        opacity: 0;

        transform: translateY(14px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.reveal {

    animation: rise 0.8s ease both;

}



.reveal-delay-1 {

    animation-delay: 0.15s;

}



.reveal-delay-2 {

    animation-delay: 0.3s;

}



/* ===== RESPONSIVE DESIGN ===== */



@media (max-width: 1024px) {

    .content-grid {

        grid-template-columns: 1fr;

    }

}



/* Tablet adjustments */

@media (max-width: 1023px) and (min-width: 641px) {

    .hero {

        border-radius: 20px;

        padding: clamp(1.5rem, 4vw, 3rem);

    }



    .content-grid {

        gap: 1.5rem;

        padding: 0 1rem;

    }



    .site-header .flex {

        flex-direction: column;

        text-align: center;

        gap: 0.5rem;

    }



    .site-nav {

        padding: 0.5rem;

    }



    .nav-link {

        padding: 0.4rem 0.8rem;

        font-size: 0.85rem;

    }



    .logo-mark {

        width: 48px;

        height: 48px;

    }

}



/* Smartphone adjustments */

@media (max-width: 640px) {

    .hero {

        border-radius: 16px;

        padding: 1.5rem;

        background-position: center 60%;

    }



    .content-grid {

        gap: 1rem;

        padding: 0 0.5rem;

    }



    .site-header {

        padding: 0.5rem 0.75rem;

    }



    .site-header .flex {

        flex-direction: column;

        text-align: center;

        gap: 0.35rem;

    }



    .logo-mark {

        width: 44px;

        height: 44px;

    }



    .site-eyebrow {

        font-size: 1rem;

    }



    .site-slogan {

        font-size: 3rem;

    }



    .site-nav {

        padding: 0.35rem 0.5rem;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

    }



    .nav-link {

        padding: 0.35rem 0.65rem;

        font-size: 0.78rem;

        white-space: nowrap;

    }



    .section-card {

        border-radius: 14px;

    }



    .card {

        border-radius: 14px;

    }



    .social-icon {

        width: 42px;

        height: 42px;

        font-size: 1.2rem;

    }



    .footer-section {

        padding: 1.25rem 0;

    }

}



/* Very small phones */

@media (max-width: 380px) {

    .hero {

        padding: 1rem;

        border-radius: 12px;

    }



    .logo-mark {

        width: 38px;

        height: 38px;

    }



    .nav-link {

        padding: 0.3rem 0.5rem;

        font-size: 0.72rem;

    }



    .site-eyebrow {

        font-size: 0.55rem;

    }

}



/* Smart Boards / Large displays */

@media (min-width: 1440px) {

    .hero {

        padding: clamp(3rem, 5vw, 5rem);

        border-radius: 32px;

    }



    .content-grid {

        gap: 2.5rem;

        max-width: 1400px;

        margin: 0 auto;

    }



    .nav-link {

        padding: 0.6rem 1.2rem;

        font-size: 1.05rem;

    }



    .logo-mark {

        width: 64px;

        height: 64px;

    }



    .site-eyebrow {

        font-size: 0.8rem;

    }



    .section-card {

        border-radius: 24px;

    }



    .card {

        border-radius: 22px;

    }



    .social-icon {

        width: 58px;

        height: 58px;

        font-size: 1.6rem;

    }

}



/* Ultra-wide smart boards */

@media (min-width: 1920px) {

    .content-grid {

        max-width: 1700px;

    }



    .hero {

        max-width: 1700px;

        margin: 0 auto;

    }



    .nav-link {

        font-size: 1.1rem;

        padding: 0.7rem 1.4rem;

    }



    .logo-mark {

        width: 72px;

        height: 72px;

    }

}



@media (prefers-reduced-motion: reduce) {

    .hero {

        animation: none;

    }

}



/* ===== FORM STYLING ===== */



input[type="text"],

input[type="email"],

input[type="password"],

input[type="date"],

textarea,

select {

    width: 100%;

    padding: 0.75rem 1rem;

    border: 1px solid rgba(15, 31, 43, 0.15);

    border-radius: 8px;

    font-family: inherit;

    font-size: 1rem;

    color: var(--ink);

}



input[type="text"]:focus,

input[type="email"]:focus,

input[type="password"]:focus,

input[type="date"]:focus,

textarea:focus,

select:focus {

    outline: none;

    border-color: var(--teal);

    box-shadow: 0 0 0 3px rgba(31, 111, 120, 0.1);

}



button[type="submit"],

.btn-submit {

    background: var(--navy);

    color: var(--sand);

    padding: 0.75rem 1.5rem;

    border-radius: 8px;

    font-weight: 600;

    border: none;

    cursor: pointer;

    transition: background 0.3s ease, transform 0.3s ease;

}



button[type="submit"]:hover,

.btn-submit:hover {

    background: var(--teal);

    transform: translateY(-2px);

}



/* ===== FOOTER ===== */



.site-footer {

    background: var(--navy);

    color: var(--sand);

    margin-top: 2rem;

}



.footer-section {

    padding: 2rem 0;

    border-top: 1px solid rgba(246, 241, 231, 0.1);

}



.footer-link {

    color: rgba(246, 241, 231, 0.8);

    text-decoration: none;

    transition: color 0.3s ease;

}



.footer-link:hover {

    color: var(--gold);

}



/* ===== SOCIAL MEDIA ICONS ===== */

.social-icons {

    display: flex;

    gap: 1.2rem;

    margin-top: 1.5rem;

    flex-wrap: wrap;

}



.social-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    position: relative;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: rgba(31, 111, 120, 0.3);

    border: 2.5px solid rgba(246, 241, 231, 0.5);

    color: var(--sand);

    text-decoration: none;

    transition: all 0.3s ease;

    font-size: 1.4rem;

    line-height: 1;

    font-weight: bold;

}



.social-icon i {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.social-text {

    position: absolute;

    font-size: 1.3rem;

    font-family: Arial, sans-serif;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.social-icon i:not(:empty) ~ .social-text {

    display: none;

}



.social-icon:hover {

    background: var(--teal);

    border-color: var(--sand);

    color: #ffffff;

    transform: translateY(-5px) scale(1.15);

    box-shadow: 0 12px 28px rgba(31, 111, 120, 0.5);

}


    --gold: #d8a441;

    --sand: #f6f1e7;

    --mist: #eef2f5;

    --card: #ffffff;

    --radius: 18px;

    --shadow: 0 20px 60px rgba(15, 31, 43, 0.12);

}



/* ===== GLOBAL STYLING ===== */



body {

    font-family: "Source Sans 3", "Segoe UI", sans-serif;

    background: #000000;

    color: var(--ink);

}



h1, h2, h3, h4 {

    font-family: "Fraunces", "Georgia", serif;

    letter-spacing: -0.01em;

}



/* ===== HEADER & NAVIGATION ===== */



.site-header {

    background: linear-gradient(90deg, var(--navy), var(--deep));

    color: var(--sand);

}



.logo-mark {

    width: 56px;

    height: 56px;

    border-radius: 999px;

    border: 2px solid rgba(255, 255, 255, 0.4);

    object-fit: cover;

}



.site-eyebrow {

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 0.7rem;

    color: rgba(255, 255, 255, 0.7);

}



.site-slogan {

    color: rgba(255, 255, 255, 0.85);

    font-style: italic;

}



.site-nav {

    background: #123546;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

}



.nav-link {

    color: #e4eef2;

    padding: 0.5rem 1rem;

    border-radius: 999px;

    transition: all 0.3s ease;

    font-weight: 600;

}



.nav-link:hover {

    background: rgba(255, 255, 255, 0.14);

}



.nav-link--active {

    background: rgba(255, 255, 255, 0.2);

}



/* ===== HERO SECTION ===== */



.hero {

    background-image: linear-gradient(120deg, rgba(12, 42, 58, 0.58), rgba(12, 42, 58, 0.22)), url("officefront.jpg?v=20260217");

    background-size: cover;

    background-position: center 78%;

    background-repeat: no-repeat;

    border-radius: 28px;

    padding: clamp(2rem, 5vw, 4rem);

    color: var(--sand);

    display: grid;

    gap: 2rem;

    box-shadow: var(--shadow);

}



.hero-kicker {

    text-transform: uppercase;

    letter-spacing: 0.18em;

    font-size: 0.75rem;

    color: #ffffff;

    text-shadow: 1px 1px 4px rgba(128, 0, 0, 0.5);

    font-weight: 700;

}



.hero-title {

    font-size: clamp(2rem, 3.6vw, 3.4rem);

    line-height: 1.1;

}



.hero-subtitle {

    color: rgba(246, 241, 231, 0.9);

    font-size: 1.05rem;

    max-width: 40rem;

}



.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 0.75rem;

}



/* ===== BUTTONS ===== */



.btn-primary {

    background: var(--gold);

    color: #1b2a34;

    padding: 0.65rem 1.4rem;

    border-radius: 999px;

    font-weight: 700;

    letter-spacing: 0.02em;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    cursor: pointer;

    text-decoration: none;

    display: inline-block;

}



.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(216, 164, 65, 0.35);

}



.btn-ghost {

    border: 1px solid rgba(246, 241, 231, 0.6);

    color: var(--sand);

    padding: 0.6rem 1.3rem;

    border-radius: 999px;

    font-weight: 600;

    transition: background 0.3s ease, color 0.3s ease;

    background: transparent;

    cursor: pointer;

    text-decoration: none;

    display: inline-block;

}



.btn-ghost:hover {

    background: rgba(246, 241, 231, 0.15);

    color: #ffffff;

}



/* ===== CARDS & SECTIONS ===== */



.notice-card {

    background: #e6f2ec;

    border-left: 4px solid #2f7d69;

    padding: 1rem 1.25rem;

    border-radius: 12px;

    color: #1f5a4b;

}



.section-card {

    background: var(--card);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    padding: 1.5rem;

}



/* ===== LAYOUT ===== */



.content-grid {

    display: grid;

    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);

    gap: 2rem;

}



.link-grid a {

    background: #f7f4ee;

    border-radius: 14px;

    padding: 0.9rem 1rem;

    border: 1px solid rgba(12, 42, 58, 0.08);

    font-weight: 600;

    color: var(--navy);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    text-decoration: none;

    display: block;

}



.link-grid a:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(15, 31, 43, 0.12);

}



.director-card img {

    border-radius: 16px;

    box-shadow: 0 12px 30px rgba(15, 31, 43, 0.18);

}



.quick-actions {

    display: grid;

    gap: 0.75rem;

    margin: 1rem 0 1.5rem;

}



.quick-actions a {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 0.5rem;

    text-decoration: none;

    color: var(--navy);

}



/* ===== CAROUSEL ===== */



.carousel-container {

    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    box-shadow: 0 18px 35px rgba(15, 31, 43, 0.12);

}



.carousel-slide {

    display: none;

    width: 100%;

    transition: opacity 0.5s ease-in-out;

}



.carousel-slide.active {

    display: block;

    opacity: 1;

}



.carousel-button {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background-color: rgba(15, 31, 43, 0.6);

    color: white;

    padding: 0.65rem;

    border-radius: 9999px;

    cursor: pointer;

    z-index: 10;

    font-size: 1.4rem;

    line-height: 1;

    transition: background-color 0.3s ease;

    border: none;

}



.carousel-button:hover {

    background-color: rgba(15, 31, 43, 0.85);

}



.carousel-button-prev {

    left: 1rem;

}



.carousel-button-next {

    right: 1rem;

}



.carousel-dots {

    position: absolute;

    bottom: 1rem;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 0.5rem;

    z-index: 10;

}



.carousel-dot {

    width: 10px;

    height: 10px;

    background-color: rgba(255, 255, 255, 0.5);

    border-radius: 9999px;

    cursor: pointer;

    transition: background-color 0.3s ease, transform 0.3s ease;

    border: none;

}



.carousel-dot.active {

    background-color: white;

    transform: scale(1.2);

}



/* ===== SCROLLBARS ===== */



.announcements-scroll::-webkit-scrollbar,

.events-scroll::-webkit-scrollbar {

    width: 8px;

}



.announcements-scroll::-webkit-scrollbar-track,

.events-scroll::-webkit-scrollbar-track {

    background: #f1f1f1;

    border-radius: 10px;

}



.announcements-scroll::-webkit-scrollbar-thumb,

.events-scroll::-webkit-scrollbar-thumb {

    background: #9aa7b4;

    border-radius: 10px;

}



.announcements-scroll::-webkit-scrollbar-thumb:hover,

.events-scroll::-webkit-scrollbar-thumb:hover {

    background: #738290;

    cursor: pointer;

}



/* ===== ANIMATIONS ===== */



@keyframes rise {

    from {

        opacity: 0;

        transform: translateY(14px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.reveal {

    animation: rise 0.8s ease both;

}



.reveal-delay-1 {

    animation-delay: 0.15s;

}



.reveal-delay-2 {

    animation-delay: 0.3s;

}



/* ===== RESPONSIVE DESIGN ===== */



@media (max-width: 1024px) {

    .content-grid {

        grid-template-columns: 1fr;

    }

}



/* Tablet adjustments */

@media (max-width: 1023px) and (min-width: 641px) {

    .hero {

        border-radius: 20px;

        padding: clamp(1.5rem, 4vw, 3rem);

    }



    .content-grid {

        gap: 1.5rem;

        padding: 0 1rem;

    }



    .site-header .flex {

        flex-direction: column;

        text-align: center;

        gap: 0.5rem;

    }



    .site-nav {

        padding: 0.5rem;

    }



    .nav-link {

        padding: 0.4rem 0.8rem;

        font-size: 0.85rem;

    }



    .logo-mark {

        width: 48px;

        height: 48px;

    }

}



/* Smartphone adjustments */

@media (max-width: 640px) {

    .hero {

        border-radius: 16px;

        padding: 1.5rem;

        background-position: center 60%;

    }



    .content-grid {

        gap: 1rem;

        padding: 0 0.5rem;

    }



    .site-header {

        padding: 0.5rem 0.75rem;

    }



    .site-header .flex {

        flex-direction: column;

        text-align: center;

        gap: 0.35rem;

    }



    .logo-mark {

        width: 44px;

        height: 44px;

    }



    .site-eyebrow {

        font-size: 0.6rem;

    }



    .site-slogan {

        font-size: 0.75rem;

    }



    .site-nav {

        padding: 0.35rem 0.5rem;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

    }



    .nav-link {

        padding: 0.35rem 0.65rem;

        font-size: 0.78rem;

        white-space: nowrap;

    }



    .section-card {

        border-radius: 14px;

    }



    .card {

        border-radius: 14px;

    }



    .social-icon {

        width: 42px;

        height: 42px;

        font-size: 1.2rem;

    }



    .footer-section {

        padding: 1.25rem 0;

    }

}



/* Very small phones */

@media (max-width: 380px) {

    .hero {

        padding: 1rem;

        border-radius: 12px;

    }



    .logo-mark {

        width: 38px;

        height: 38px;

    }



    .nav-link {

        padding: 0.3rem 0.5rem;

        font-size: 0.72rem;

    }



    .site-eyebrow {

        font-size: 0.55rem;

    }

}



/* Smart Boards / Large displays */

@media (min-width: 1440px) {

    .hero {

        padding: clamp(3rem, 5vw, 5rem);

        border-radius: 32px;

    }



    .content-grid {

        gap: 2.5rem;

        max-width: 1400px;

        margin: 0 auto;

    }



    .nav-link {

        padding: 0.6rem 1.2rem;

        font-size: 1.05rem;

    }



    .logo-mark {

        width: 64px;

        height: 64px;

    }



    .site-eyebrow {

        font-size: 0.8rem;

    }



    .section-card {

        border-radius: 24px;

    }



    .card {

        border-radius: 22px;

    }



    .social-icon {

        width: 58px;

        height: 58px;

        font-size: 1.6rem;

    }

}



/* Ultra-wide smart boards */

@media (min-width: 1920px) {

    .content-grid {

        max-width: 1700px;

    }



    .hero {

        max-width: 1700px;

        margin: 0 auto;

    }



    .nav-link {

        font-size: 1.1rem;

        padding: 0.7rem 1.4rem;

    }



    .logo-mark {

        width: 72px;

        height: 72px;

    }

}



@media (prefers-reduced-motion: reduce) {

    .hero {

        animation: none;

    }

}



/* ===== FORM STYLING ===== */



input[type="text"],

input[type="email"],

input[type="password"],

input[type="date"],

textarea,

select {

    width: 100%;

    padding: 0.75rem 1rem;

    border: 1px solid rgba(15, 31, 43, 0.15);

    border-radius: 8px;

    font-family: inherit;

    font-size: 1rem;

    color: var(--ink);

}



input[type="text"]:focus,

input[type="email"]:focus,

input[type="password"]:focus,

input[type="date"]:focus,

textarea:focus,

select:focus {

    outline: none;

    border-color: var(--teal);

    box-shadow: 0 0 0 3px rgba(31, 111, 120, 0.1);

}



button[type="submit"],

.btn-submit {

    background: var(--navy);

    color: var(--sand);

    padding: 0.75rem 1.5rem;

    border-radius: 8px;

    font-weight: 600;

    border: none;

    cursor: pointer;

    transition: background 0.3s ease, transform 0.3s ease;

}



button[type="submit"]:hover,

.btn-submit:hover {

    background: var(--teal);

    transform: translateY(-2px);

}



/* ===== FOOTER ===== */



.site-footer {

    background: var(--navy);

    color: var(--sand);

    margin-top: 2rem;

}



.footer-section {

    padding: 2rem 0;

    border-top: 1px solid rgba(246, 241, 231, 0.1);

}



.footer-link {

    color: rgba(246, 241, 231, 0.8);

    text-decoration: none;

    transition: color 0.3s ease;

}



.footer-link:hover {

    color: var(--gold);

}



/* ===== SOCIAL MEDIA ICONS ===== */

.social-icons {

    display: flex;

    gap: 1.2rem;

    margin-top: 1.5rem;

    flex-wrap: wrap;

}



.social-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    position: relative;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: rgba(31, 111, 120, 0.3);

    border: 2.5px solid rgba(246, 241, 231, 0.5);

    color: var(--sand);

    text-decoration: none;

    transition: all 0.3s ease;

    font-size: 1.4rem;

    line-height: 1;

    font-weight: bold;

}



.social-icon i {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.social-text {

    position: absolute;

    font-size: 1.3rem;

    font-family: Arial, sans-serif;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.social-icon i:not(:empty) ~ .social-text {

    display: none;

}



.social-icon:hover {

    background: var(--teal);

    border-color: var(--sand);

    color: #ffffff;

    transform: translateY(-5px) scale(1.15);

    box-shadow: 0 12px 28px rgba(31, 111, 120, 0.5);

}

