/* ====== GLOBAL STYLES ====== */
html, body {
    color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    min-height: 100vh;
    flex-direction: column;
    display: flex;
    margin: 0;
    padding: 0;
    background: none !important;
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* ====== MAIN CONTENT AREA ====== */
main {
    padding: 0 !important;
    overflow-y: hidden;
}

.navigation-bar {
    margin-bottom: 0;
}

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* ====== UTILITIES ====== */
.full-height {
    height: 100vh;
}
.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}
.position-ref {
    position: relative;
}
.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
    background-color: blue;
}
.content {
    text-align: center;
}
.title {
    color: #000;
    font-size: 54px;
}
h3 {
    color: #222222;
}
.links > a {
    color: #222222;
    padding: 0 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}
.m-b-md {
    margin-bottom: 30px;
}
#title-atas {
    text-align: center;
    background-color: blue;
}
.nav-link {
    color: black !important;
}
#more {
    display: none;
}
.logo {
    height: 60px;
}

/* ====== FOOTER ====== */
.footer {
    background-color: #5E7153;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: auto;
}
.footer-link {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-link:hover {
    text-decoration: underline;
}

/* ====== NAVBAR RESPONSIVE ====== */
.navbar-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
}
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin: 0 15px;
    text-transform: uppercase;
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

/* iPad Pro landscape & small laptop (1024px and below) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 20px;
    }
    .hero-section h1 {
        font-size: 2.4rem;
    }
}

/* Tablet size (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 60px 15px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .login-btn {
        font-size: 0.9rem;
    }
    .navbar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 10px;
    }
}

/* Smartphone size (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 10px;
    }
    .hero-section h1 {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .login-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

/* Row margin fix for Bootstrap */
.row {
    margin-left: 0;
    margin-right: 0;
}
html {
  scroll-behavior: smooth;
}
