/* navbar.css */

/* Global Reset to remove browser default white space */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

* {
    box-sizing: border-box;
}

/* Main Header Box with Black Background arranged vertically */
.universal-navbar {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #000000;
    display: flex;
    flex-direction: column; /* Forces vertical stacking */
    align-items: center;    /* Centers both elements perfectly horizontally */
    padding-top: 25px;      /* Spacing above the logo */
    padding-bottom: 20px;   /* Spacing below the tagline before page content starts */
    border-bottom: 1px solid #1a1a1a; /* Subtle separation line */
}

/* Logo Area styling */
.nav-logo-area {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;    /* Pulls the tagline tighter to the logo */
}

.logo-image {
    height: 55px;           /* Gives the logo a prominent, clean size */
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo-image:hover {
    transform: scale(1.03); /* Subtle interactive feel when hovered */
}

/* Tagline Area directly under Logo */
.nav-tagline {
    color: #888888;         /* Sophisticated muted gray */
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.2px;  /* Slightly spaced out letters for a modern aesthetic */
    text-transform: lowercase;
}

/* navbar.css additions */

/* Information Menu Container */
.nav-info-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px; /* Pushes the menu cleanly below the tagline */
}

/* Individual Link Styling */
.info-link {
    color: #666666; /* Muted gray so it doesn't distract from the main headline */
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

/* Hover Effect turning into your signature brand orange */
.info-link:hover {
    color: darkorange;
}

/* Small bullet points separating the links */
.nav-divider {
    color: #333333;
    font-size: 12px;
    user-select: none; /* Prevents users from accidentally highlighting the dots */
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .nav-info-menu {
        gap: 10px;
    }
    .info-link {
        font-size: 11px;
    }
}