/* ================================
   CONTAINERS (for 1-header.shtml)
   ================================ */
    
/* =====Header Container=========== */
.site-header {
    position: sticky;          /* keeps header visible at top */
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* subtle shadow */
    height: 10vh;              /* consistent header height */
    display: flex;
    justify-content: center;    /* centers inner content */
    align-items: center;
    margin: 0;
    padding: 0;
    /* width: 100%;
    z-index: 1000;             /* ensures header stays above content */
}

/* =====Inner Container============= */
.site-header .header-inner {
    max-height: 12vh;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;  /* logo left, nav right */
    align-items: center;
    padding: 0 1rem;
}


/* ================================
   Logo
   ================================ */
.site-header .logo img {
    max-height: 11.5vh;     /* fits within header */
    width: auto;
    display: block;
}

/* ================================
   Phone Number
   ================================ */
.site-header .phone {
    text-align: right;
    margin: 0 1rem 0 0;
    font-weight: bold;
    font-size: 1.75rem;
}

/* ================================
   Navigation Menu
   ================================ */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #000;        /* change color if needed */
    font-weight: 500;
}

/* ================================
   Hamburger (Mobile)
   ================================ */
.menu-toggle {
    display: none; /* hide checkbox by default */
}

.hamburger {
    display: none; /* hide hamburger by default */
    font-size: 2rem;
    cursor: pointer;
}

/* ================================
   Responsive: Mobile
   ================================ */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    .hamburger {
        display: block;
    }

    /* Hide normal menu */
    .nav-menu ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    /* Show menu when hamburger checked */
    .menu-toggle:checked + .hamburger + .nav-menu ul {
        display: flex;
    }

    /* Stack logo and phone nicely */
    .header-left, .header-right {
        display: flex;
        align-items: center;
    }

    .header-right {
        gap: 1rem;
    }
}
