:root {
    --ust-gold: #f4c430;
    --ust-light-gold: #f4d87d;
    --ust-dark: #212121;
    --ust-nav-bg: #f8f9fa;
    --ust-blue: #063152;
}

body {
    font-family: "Roboto", sans-serif;
}

.top-header {
    background-color: #1e1e1e;
    color: white;
}

.brand-text {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-left: 10px;
    text-transform: uppercase;
}

.help-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.help-link:hover {
    color: #F9C10A !important; 
    text-decoration: none;
    transform: translateY(-1px); 
}


.help-link i {
    margin-right: 5px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-img.png');
    background-size: cover;
    background-position: center;
    padding: 20px 0; 
    color: white;
    text-align: center;
    min-height: 30vh; 
    display: flex;
    align-items: center;
}

.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem;
    text-align: center; 
    margin-bottom: -100px !important; 
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 100px;
    text-transform: none;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
        margin-top: 100px;
    }
}

/* --- Nav Bar --- */
.navbar {
    background-color: rgba(233, 236, 239, 0.9) !important;
    padding: 0;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px 20px !important;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: black !important;
    background-color: rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--ust-gold);
}

.nav-link.active {
    color: var(--ust-blue) !important;
    font-weight: 700;
    border-bottom: 3px solid var(--ust-blue);
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #000;
    border-left: 3px solid var(--ust-gold);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
    color: #333;
    border-left: 3px solid var(--ust-gold);
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transition: all 0.3s ease;
}

.btn-black {
    background: linear-gradient(135deg, var(--ust-gold) 0%, var(--ust-light-gold) 100%);
    border: 2px solid var(--ust-light-gold);
    color: var(--ust-dark);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-black:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--ust-light-gold) 0%, #fff 100%);
    border-color: #fff;
    color: var(--ust-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.5);
}

.btn-black:disabled {
    background: linear-gradient(135deg, #5a5038 0%, #4a4030 100%);
    border-color: #4a4030;
    color: #888;
    opacity: 0.6;
}
/* --- Dashboard Background--- */
.content-body {
    background-color: transparent;
}

.content-body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(244, 208, 63, 0.05) 35px,
        rgba(244, 208, 63, 0.05) 70px
    );
    pointer-events: none;
    z-index: 0;
}

.content-body > * {
    position: relative;
    z-index: 1;
}

/* --- Footer --- */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
    font-size: 0.9rem;
}

.footer-logo-text {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin-left: 10px;
    line-height: 1.2;
}

.footer-desc {
    margin-top: 15px;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-header {
    color: var(--ust-gold);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--ust-gold);
}

.footer-bottom-line {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.footer-dropdown {
    position: relative;
}

.footer-hover-links {
    list-style: none;
    padding-left: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.footer-dropdown:hover .footer-hover-links {
    max-height: 50px;
    opacity: 1;
    margin-top: 5px;
}

.footer-hover-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-hover-links a:hover {
    color: var(--ust-gold);
}

/* go to top btn */
.btn-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0b62a3;
    border: 2px solid var(--ust-gold);
    border-radius: 50%;
    color: var(--ust-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.btn-scroll-top.show{
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 992px) {
    .navbar {
        background-color: #1e1e1e !important;
        padding: 10px 15px !important;
        transition: background-color 0.3s ease-in-out;
    }

    .navbar-mobile .container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .navbar .brand-text {
        color: #ffffff !important;
    }
    .navbar-toggler i {
        color: #ffffff !important;
    }

    .navbar-nav .nav-item .nav-link.fw-bold {
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .navbar-nav .nav-link {
        color: #f8f9fa !important;
        padding: 15px 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .nav-link.active {
        color: var(--ust-gold) !important;
        font-weight: 1000;
    }
}

@media (max-width: 576px) {
    .footer-logo-text {
        font-size: 1rem;
    }

    .footer-desc {
        font-size: 0.8rem;
    }

    .footer-header {
        font-size: 1rem;
    }
}

/* --- Footer Social Icons --- */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    border: 2px solid rgba(255,255,255,0.15);
    color: #ccc;
    background-color: rgba(255,255,255,0.06);
}

.footer-social-btn:hover {
    transform: translateY(-3px);
}

.footer-social-fb:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.footer-social-yt:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
}