/* Body offset for fixed header + navbar */
body {
    padding-top: 140px;
}

/* Top header */
.top-header {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    z-index: 1050;
}

/* Navbar default offset below top header */
.navbar-offset {
    top: 40px; /* height of top header */
}

/* Shrink state adjustment */
.navbar-shrink {
    padding: 8px 0 !important;
    background: rgba(8, 18, 30, 0.98) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}


/* ============================= */
/* 🔷 MAIN NAVBAR DEFAULT STATE  */
/* ============================= */

.custom-navbar {
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(12px);
    padding: 22px 0;
    transition: all 0.4s ease;
}

/* Brand */
.brand-text {
    font-size: 28px;
    font-weight: 700;
    color: #f4c430;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    margin: 0 15px;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f4c430;
    bottom: -6px;
    left: 0;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #f4c430 !important;
}

/* ============================= */
/* 🔥 SHRINK ON SCROLL EFFECT    */
/* ============================= */



.navbar-shrink .brand-text {
    font-size: 22px;
}

.navbar-shrink .nav-link {
    font-size: 14px;
}

/* ============================= */
/* 🔶 GOLD BUTTON                */
/* ============================= */

.btn-gold {
    background: linear-gradient(45deg, #f4c430, #d4af37);
    color: #000;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ============================= */
/* Other Page Styles             */
/* ============================= */

.slider-img {
    height: 600px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
}

.section-title {
    font-weight: bold;
    color: #0d6efd;
}

.card {
    border: none;
    border-radius: 15px;
}
