/* ================================
   GLOBAL
================================ */
body {
    background: #f5f7fa;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.section-title {
    font-weight: 600;
    color: #143AA2;
    margin-bottom: 15px;
}

/* ================================
   NAVBAR
================================ */
.navbar {
    background: #143AA2 !important;
}
.navbar-brand {
    color: white !important;
    font-weight: 600;
}

/* ===== NAVBAR PROFESIONAL ===== */
.navbar-main {
    background: #143AA2;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.navbar-main .brand {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.navbar-main .menu {
    display: flex;
    gap: 25px;
    align-items: center;
}
.navbar-main .menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}
.navbar-main .menu a:hover {
    color: #FFD700;
}
.navbar-dropdown {
    position: relative;
}
.navbar-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 36px;
    left: 0;
    background: white;
    padding: 12px 0;
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.navbar-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #143AA2 !important;
}
.dropdown-menu a:hover {
    background: #f2f6ff;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #143AA2;
    padding: 20px;
    transition: 0.3s;
    z-index: 99999;
}
.mobile-menu.active {
    left: 0;
}
.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: white;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media(max-width: 991px) {
    .navbar-main .menu { display: none; }
    .menu-toggle { display: block; }
}

/* ================================
   BANNER UTAMA
================================ */
.banner-main-box {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 6px 15px rgba(0,0,0,0.20);
}
.banner-main-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-headline {
    position: absolute;
    bottom: 25px;
    left: 25px;
    padding: 12px 22px;
    background: rgba(0,0,0,0.55);
    color: white;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
}

/* ================================
   SLIDER
================================ */
.carousel-inner img {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    object-fit: cover;
}

/* ================================
   TEAM LOGO
================================ */
.team-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

/* ================================
   CARD ARTIKEL
================================ */
.card-article {
    border-radius: 14px;
    overflow: hidden;
    transition: 0.15s;
}
.card-article:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.card-article img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.card-article .title {
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    overflow: hidden;
}

/* ================================
   MATCH BOX
================================ */
.match-box {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ================================
   FOOTER
================================ */
.footer {
    text-align: center;
    padding: 25px 0;
    color: #777;
    margin-top: 40px;
}
