/* 
    Theme: Elevated Academic Excellence
    Colors: UNIQHBA Green, Deep Navy, Gold/Champagne
*/

:root {
    --primary-green: #0a4f32;
    --primary-green-light: #0d6e46;
    --deep-navy: #1b263b;
    --deep-navy-light: #2b3a55;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-navy);
    font-weight: 700;
}

/* Typography Utilities */
.text-primary { color: var(--primary-green) !important; }
.text-navy { color: var(--deep-navy) !important; }
.text-gold { color: var(--gold) !important; }

/* Background Utilities */
.bg-primary { background-color: var(--primary-green) !important; }
.bg-navy { background-color: var(--deep-navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-light { background-color: var(--bg-light) !important; }

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.btn-gold:hover {
    background-color: #c19b2e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Header/Nav */
.navbar-custom {
    background:
        linear-gradient(135deg, rgba(2, 60, 38, 0.72) 0%, rgba(8, 126, 73, 0.75) 45%, rgba(6, 82, 52, 0.76) 100%);
    box-shadow: 0 8px 24px rgba(2, 18, 13, 0.18);
    padding: 15px 0;
    border-bottom: 1px solid rgba(220, 230, 225, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.navbar-custom .navbar-brand img {
    height: 50px;
}
.brand-wordart-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    line-height: 1.05;
    color: #fffef5;
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.10),
        0 2px 7px rgba(0, 0, 0, 0.16),
        0 0 12px rgba(255, 244, 170, 0.45),
        0 0 22px rgba(255, 216, 74, 0.40),
        0 0 30px rgba(255, 200, 30, 0.28);
    background: linear-gradient(135deg, #fffdf0 0%, #fff3b0 35%, #ffe35c 65%, #ffd11a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2.4px rgba(56, 210, 194, 0.30);
    paint-order: stroke fill;
}
.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
}
.navbar-custom .nav-link:hover {
    color: var(--gold-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/COVER_HALAMAN_UTAMA_UNIQHBA.jpg') center center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(27, 38, 59, 0.9), rgba(10, 79, 50, 0.6));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Sections */
.section-padding {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

/* Cards */
.card-academic {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background-color: var(--white);
    overflow: hidden;
}
.card-academic:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-academic .card-body {
    padding: 30px;
}
.berita-page .card-academic {
    min-height: 100%;
}
.berita-page .card-academic .card-body {
    display: flex;
    flex-direction: column;
}
.berita-page .card-academic .btn {
    margin-top: auto;
}
.berita-page h3 {
    margin-bottom: 1.75rem;
}
.berita-page .badge {
    font-size: 0.82rem;
    padding: 0.5rem 0.85rem;
}
.card-academic .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-size: 24px;
}

/* Footer */
.footer {
    background-color: var(--deep-navy);
    color: var(--text-light);
    padding: 60px 0 30px;
}
.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}
.footer a {
    color: #a0aabf;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #a0aabf;
}

/* Micro-interactions */
a, button {
    transition: all 0.3s ease-in-out;
}
