@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ================= NAVBAR ================= */

.custom-navbar2 {
    background: #000000 !important;
    border-bottom: 1px solid rgba(210, 183, 123, 0.18);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.35s ease;
}

/* Optional glow line */
.custom-navbar2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(210, 183, 123, 0.7),
        transparent
    );
}

/* ================= BRAND ================= */

.brand2 {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 54px !important;
    width: auto;
    object-fit: contain;

    transition: transform 0.4s ease;
}

.brand2:hover .navbar-logo {
    transform: scale(1.04);
}

/* ================= NAV LINKS ================= */

.navbar-nav {
    gap: 10px;
    align-items: center;
}

.nav2-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.72) !important;

    padding: 10px 18px !important;

    position: relative;
    border-radius: 10px;

    transition: all 0.35s ease;
}

/* Animated underline */
.nav2-link::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 6px;

    width: 0%;
    height: 1px;

    background: #d2b77b;

    transition: width 0.35s ease;
}

/* Hover */
.nav2-link:hover {
    color: #ffffff !important;

    background: rgba(210, 183, 123, 0.08);

    transform: translateY(-2px);
}

.nav2-link:hover::after {
    width: calc(100% - 36px);
}

/* Active */
.nav2-link.active {
    color: #d2b77b !important;
}

.nav2-link.active::after {
    width: calc(100% - 36px);
}

/* ================= DIVIDER ================= */

.nav2-divider {
    width: 1px;
    height: 26px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(210, 183, 123, 0.6),
        transparent
    );

    margin: 0 16px;
}

/* ================= CTA BUTTON ================= */

.nav2-cta {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #d2b77b !important;

    padding: 12px 28px !important;

    border-radius: 12px;

    border: 1px solid rgba(210, 183, 123, 0.5) !important;

    background: rgba(210, 183, 123, 0.05);

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;

    text-decoration: none;
}

/* Button glow */
.nav2-cta::before {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transition: all 0.6s ease;
}

.nav2-cta:hover::before {
    left: 120%;
}

.nav2-cta:hover {
    background: #d2b77b !important;
    color: #000 !important;

    box-shadow:
        0 0 20px rgba(210, 183, 123, 0.35),
        0 0 40px rgba(210, 183, 123, 0.15);

    transform: translateY(-2px);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .custom-navbar2 {
        padding: 12px 0;
    }

    .navbar-nav {
        padding-top: 20px;
        gap: 6px;
    }

    .nav2-link {
        padding: 12px 14px !important;
    }

    .nav2-divider {
        display: none;
    }

    .nav2-cta {
        margin-top: 12px;
        display: inline-flex;
        justify-content: center;
    }

    .navbar-logo {
        height: 46px !important;
    }
}