/* ========================================
   NAVBAR OVERRIDE STYLES
   ======================================== */

/* Reset font size for all navbar elements */
.dt-navbar,
.dt-navbar *,
.navbar,
.navbar * {
    font-size: inherit !important;
}

/* ========================================
   MAIN NAVBAR CONTAINER
   ======================================== */
.dt-navbar,
.navbar {
    /* Override Webflow defaults */
    height: auto !important;
    font-size: 0.875rem !important;
    position: fixed !important;
    z-index: 100 !important;
    
    /* Blurred background effect - very transparent */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    
    /* Full width positioning */
    padding: 1rem 2rem;
    width: 100% !important;
    max-width: none;
    min-width: auto;
    min-height: auto;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    
    /* Smooth transition */
    transition: all 0.2s ease;
    user-select: none;
    isolation: isolate;
}

/* No hover effect for minimalism */
.dt-navbar:hover,
.navbar:hover {
    background: rgba(0, 0, 0, 0.15) !important;
}

/* ========================================
   NAVIGATION CONTAINER
   ======================================== */
.dt-nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.dt-nav-container > * {
    flex-shrink: 0 !important;
}

/* ========================================
   RIGHT SIDE NAV CONTAINER
   ======================================== */
.dt-right-nav-navbar-1 {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

/* ========================================
   NAVIGATION MENU
   ======================================== */
.dt-nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    position: static !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-shrink: 1 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.dt-nav-menu::-webkit-scrollbar {
    display: none !important;
}

.dt-nav-menu {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* ========================================
   NAVIGATION LINKS
   ======================================== */
.dt-nav-menu .dt-nav-link {
    /* Override Webflow defaults */
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    border: none !important;
    margin: 0 !important;
    background: transparent !important;
    
    /* Minimal styling */
    padding: 0.5rem 1rem !important;
    border-radius: 0 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    
    /* Layout */
    display: inline-block !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    
    /* Simple transition */
    transition: color 0.2s ease !important;
}

/* Navigation link hover - just color change */
.dt-nav-menu .dt-nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
}

/* Active/current link styling - removed selected state */
.dt-nav-menu .dt-nav-link.w--current {
    color: rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    font-weight: 400 !important;
}

.dt-nav-menu .dt-nav-link.w--current:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
}

/* Special styling for FUN link */
.dt-nav-link.fun {
    font-style: normal !important;
}

/* ========================================
   LINEAR-STYLE NAVBAR
   ======================================== */
.dt-nav-link.linear-style {
    /* Linear's minimal style */
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.dt-nav-link.linear-style:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
}

.dt-nav-link.linear-style.w--current {
    color: rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    font-weight: 400 !important;
}

/* ========================================
   BRAND/LOGO STYLING
   ======================================== */
.navbar-link-block {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    margin-right: auto !important;
}

.navbar-link-block .text-size-small {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

/* ========================================
   MOBILE MENU BUTTON (HIDDEN)
   ======================================== */
.menu-button-2 {
    display: none !important;
}

/* ========================================
   SPACE FOR PROGRESS BAR
   ======================================== */
/* Add space below navbar for progress bar */
body {
    padding-top: 0 !important;
}

/* If there's a progress bar, it should be positioned below the navbar */
.progress-bar,
.scroll-indicator,
[class*="progress"],
[class*="scroll-bar"] {
    top: 60px !important; /* Adjust based on navbar height */
}

/* ========================================
   HERO SECTION - START FROM TOP
   ======================================== */
/* Make hero section start from the very top, behind navbar */
.section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.home-hero {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ========================================
   TABLET FIXES - REMOVE SCROLLBAR & WHITE STYLING
   ======================================== */
@media screen and (max-width: 991px) {
    .dt-nav-menu {
        overflow: hidden !important;
        background: transparent !important;
        border: none !important;
    }
    
    .dt-nav-menu::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .dt-navbar,
    .navbar {
        background: rgba(0, 0, 0, 0.15) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .dt-nav-container {
        background: transparent !important;
        border: none !important;
    }
}
