﻿/* ═══════════════════════════════════════════════════════════════
   ANGLOLAB — CustomNavbar.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Navbar base ─────────────────────────────────────────────── */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #dde3f0;
    box-shadow: 0 2px 16px rgba(13, 24, 70, 0.07);
    padding: 0 20px;
    height: 65px;
    display: flex;
    align-items: center;
}

/* ── Logo container ──────────────────────────────────────────── */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    padding: 0 20px;
    box-shadow: 0 1px 12px rgba(13, 24, 70, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 65px;
    border-bottom: 1px solid #dde3f0;
}

    .logo-container .logo,
    .navbar-brand img {
        height: 45px;
        width: auto;
        object-fit: contain;
        transition: opacity 0.2s ease;
    }

        .logo-container .logo:hover,
        .navbar-brand:hover img {
            opacity: 0.85;
        }

/* ── Links de navegación ─────────────────────────────────────── */
.navbar-light .navbar-nav .nav-link {
    color: #1a1f3a;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: #3a7bd5;
        background: rgba(58, 123, 213, 0.07);
    }

    .navbar-light .navbar-nav .nav-link.active {
        color: #0d1846;
        font-weight: 700;
    }

/* ── Toggler móvil ───────────────────────────────────────────── */
.navbar-toggler {
    border: 1.5px solid #dde3f0;
    border-radius: 8px;
    padding: 5px 10px;
    transition: border-color 0.2s ease;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.2);
        outline: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230d1846' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Dropdown ────────────────────────────────────────────────── */
.dropdown-menu {
    border: 1px solid #dde3f0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(13, 24, 70, 0.1);
    padding: 6px;
    margin-top: 8px;
}

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1f3a;
    border-radius: 6px;
    padding: 8px 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

    .dropdown-item:hover {
        background: rgba(58, 123, 213, 0.08);
        color: #3a7bd5;
    }
