
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    will-change: transform;
}



.header-scrolled .navbar {
    padding: 6px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px);
}
/* === NORMAL === */
.topbar {
    background: hsl(222, 83%, 39%);
    padding: 8px 0;
    font-size: 14px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* AUTH LINKS TOPBAR */
.auth-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.login-link:hover {
    opacity: 0.8;
}

/* REGISTER BUTTON */
.register-btn {
    background: #fbc02d;
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #ffd54f;
    transform: translateY(-2px);
}

.navbar {
    padding: 18px 0;
    background: transparent !important;
    transition: all 0.4s ease;
}

/* TEXT PUTIH SAAT DI ATAS */
/* NAV LINK HOVER EFFECT OVAL */
.navbar .nav-link {
    position: relative;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* efek hover */
.navbar .nav-link:hover {
    background: #020910;
    color: #ffffff !important;
}

/* optional: efek saat active */
.navbar .nav-link.active {
    background: #1565c0;
    color: #ffffff !important;
}
.navbar-brand img.logo {
    height: 65px;
    transition: 0.3s;
}

.logo {
    height: 60px;
    transition: height 0.3s ease;
}



/* SCROLL STATE */
.header-scrolled .navbar {
    background: #ffffff !important;
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#site-header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.header-scrolled .nav-link {
    color: #0d47a1 !important;
}

.header-scrolled .logo {
    height: 50px;
}


/* HERO */
.hero {
    height: 100vh;
    min-height: 650px;
    background-position: center 65%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

/* overlay gelap supaya teks kebaca */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
}



.menu-section {
    padding: 80px 0;
    margin-top: 0px;
    background: hsl(238, 49%, 42%);
}


.menu-card {
    background: hsl(0, 0%, 94%);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    color: #0d47a1;
    display: block;
    position: relative;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.3 ease;
}

.menu-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: #fbc02d;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-card:hover::after {
    opacity: 1;
}

.menu-card .icon {
    font-size: 46px;
    margin-bottom: 15px;
}
.menu-card .icon svg {
    width: 46px;
    height: 46px;
    fill: #020509;
}
.menu-card h5 {
    font-weight: 600;
}

html, body {
    overscroll-behavior: none;
}

/* ============================= */
/* UNDERFOOT / FOOTER PREMIUM */
/* ============================= */

.underfoot {
    background: #0d1b3d;
    color: #ffffff;
    padding: 70px 0 30px;
}

.footer-logo {
    height: 60px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #cfd8ff;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.map-link{
    color:#cfd8ff;
    text-decoration:none;
    transition:0.3s;
}

.map-link:hover{
    color:#ffffff;
    text-decoration:underline;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* penting untuk teks panjang */
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item .icon {
    width: 25px; /* bikin semua icon sejajar */
    text-align: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item .text {
    flex: 1;
    line-height: 1.5;
}