/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body spacing (for fixed navbar) */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 70px;
    /* prevents content overlap */
}

/* ================= HEADER / NAVBAR ================= */
.main-header {
    background: #0f172a;
    height: 90px;
    width: 100%;
    padding: 20px 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Container */
.container {
    max-width: 1200px;
    height: inherit;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    /* remove white box */
}

/* ================= LOGO ================= */
.logo-container {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */
}

/* .logo {
  width: 100px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #facc15;
  margin-left: 8px;
} */

/* ================= NAVIGATION ================= */
.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list li {
    position: relative;
}

/* Nav Links */
.nav-list li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    /* soft white */
    padding: 6px 8px;
    transition: 0.3s;
    font-family:Georgia, 'Times New Roman', Times, serif
}

/* Hover Effect */
.nav-list li a:hover {
    color: #facc15;
}

/* Underline Animation */
.nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #facc15;
    transition: 0.3s;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    min-width: 200px;
    border-radius: 6px;
    padding: 10px 0;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Dropdown Items */
.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu li a {
    color: #e2e8f0;
    font-size: 13px;
    display: block;
}

.dropdown-menu li a:hover {
    color: #facc15;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Show Dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ================= LOGIN BUTTON ================= */
.login-btn {
    background: linear-gradient(135deg, #facc15, #eab308);
    color: black;
    padding: 6px 5px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover */
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(250, 204, 21, 0.4);
}

/* ================= RESPONSIVE (BASIC) ================= */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        /* hide for now (can add hamburger later) */
    }
}