/* HEADER */

.site-header {
    background: #0f172a;
    color: #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

/* dacă vrei logo ca background, poți folosi:
.logo-circle {
    background: url('/assets/images/logo.png') no-repeat center center;
    background-size: cover;
}
*/

.brand-title {
    font-weight: 700;
    font-size: 18px;
}

.brand-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 16px;
    font-size: 14px;
    opacity: 0.9;
}

.main-nav a:hover {
    opacity: 1;
}


/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

/* Hamburger Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #e5e7eb;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Fullscreen Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    gap: 24px;
    transform: translateY(100%);
    transition: transform 0.35s ease-in-out;
    z-index: 1000;
}

/* Open state */
.mobile-menu.active {
    transform: translateY(0);
}

/* X close button */
.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* Mobile menu links */
.mobile-link {
    font-size: 22px;
    color: #e5e7eb;
    text-decoration: none;
    transition: opacity 0.2s;
}

.mobile-link:hover {
    opacity: 0.7;
}  better design for text