/* =========================================
BASE STYLES (DESKTOP FIRST)
========================================= */

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-area .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
}

/* MAIN NAV */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* CENTER MENU */

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-center ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* RIGHT ACTION */

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-center ul li a {
    color: #0f172a;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
    position: relative;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-actions li {
    display: flex;
    align-items: center;
}

/* LEFT */

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

/* hover */

.nav-center ul li a:hover {
    color: #f5b400;
}

/* active page */

.nav-center ul li.active a {
    color: #f5b400;
    font-weight: 700;
}

.nav-center ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f5b400;
    transition: 0.3s;
}

.nav-center ul li a:hover::after {
    width: 100%;
}

/* LOGO */

.main-nav .logo {
    flex: 0 0 auto;
}

.main-nav .logo img {
    height: 48px;
}

/* MENU */

.auth-alert {
    display: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: center;
}

.auth-alert.error {
    background: #3b1f1f;
    border: 1px solid #ff4d4d;
    color: #ff6b6b;
}

.auth-alert.success {
    background: #1f3b2b;
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.main-nav ul.nav li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

/* ACTION AREA */

.auth-message {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #2ecc71;
}

.auth-message.error {
    color: #ff4d4d;
}

/* CTA */

.nav-cta {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta a {
    padding: 8px 14px;
    border-radius: 8px;
}

/* LANGUAGE */

.nav-lang {
    display: flex;
    align-items: center;
    height: 38px;
}

/* LOGIN */

.nav-login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
}

/* HERO */

.main-banner {
    margin-top: 70px;
    padding-top: 40px;
}

.main-banner .top-text h2 {
    font-size: 42px;
}

/* CATEGORY */

.main-banner ul.categories li {
    width: 30%;
}

.counter-section {
    position: relative;
    padding: 100px 0;
    background: #0b0b0b;
    color: #fff;
}

.counter-box {
    padding: 20px;
    transition: 0.3s;
}

.counter-box i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #d4af37;
    /* GOLD */
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.counter-box p {
    font-size: 15px;
    opacity: 0.7;
    color: #cccccc;
}

.counter-box:hover {
    transform: translateY(-5px);
}

/* subtle divider line */
.counter-box::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 10px auto 0;
    opacity: 0.5;
}

/* LISTING */

.listing-item {
    display: flex;
}

.listing-item .left-image {
    width: 50%;
}

.listing-item .right-content {
    padding: 30px;
}

/* FOOTER */

footer {
    text-align: left;
}