@import url('fonts.css');

/* =========================================================
   Reset / Base
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(77, 145, 255, 0.14), transparent 24%),
        linear-gradient(135deg, #f7fbff 0%, #eef6ff 45%, #f7fbff 100%);
    color: #20324d;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   Navbar (base — non-responsive)
========================================================= */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1200px, 90%);
    padding: 18px 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 16px 45px rgba(40, 100, 180, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #20324d;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}

.logo strong {
    color: #3478e8;
    font-weight: 700;
}

.logo-icon {
    font-size: 26px;
    line-height: 1;
}

.logo-text {
    line-height: 1;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px auto;
    border-radius: 999px;
    background: #284b77;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar .nav-links li {
    list-style: none;
}

.navbar .nav-links li a {
    color: #35506f;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

.navbar .nav-links li a:hover {
    color: #1f4a8f;
}

.navbar .nav-links li.active a {
    color: #1f4a8f;
}

.navbar .nav-links li a.headerlogin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9a4dff, #3aa6ff);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(52, 120, 232, 0.24);
}

.navbar .nav-links li a.headerlogin:hover {
    transform: translateY(-2px);
}