
        :root {
            --accent: #ffffff;
            --text: #ffffffc9;
            --header-h: 80px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Pragmatica', sans-serif; }
        html { scroll-behavior: smooth; }

        /* --- STYLES FOR BOTH HEADERS --- */
        .nav-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }


        .nav-links { display: flex; list-style: none; width: 100%; justify-content: space-around; }
        .nav-group { display: flex; gap: 40px; }
        .nav-links a { 
            text-decoration: none; 
            color: inherit; 
            
            font-size: 14px;
            transition: 0.3s;
        }
        .nav-links a.active { color: var(--accent); border-bottom: 0px solid var(--accent); }
        .nav-links a:hover { color: var(--accent); border-bottom: 0px solid var(--accent); }

        .logo {
            font-weight: bold; font-size: 24px; cursor: pointer;
            position: absolute; left: 50%; transform: translateX(-50%);
        }

        /* --- 1. INITIAL HEADER (Scrolls Away) --- */
        .initial-header {
            width: 100%;
            height: var(--header-h);
            background: white;
            color: var(--text);
            z-index: 10;
            margin-top: 20px;
            font-family: 'raleway', sans-serif !important;
            letter-spacing: 2px;
            font-weight: 600;
        }

        /* --- 2. STICKY HEADER (Appears Later) --- */
        .sticky-header {
            position: fixed;
            top: -100px; /* Hidden above screen */
            left: 0;
            width: 100%;
            height: 70px;
            background: rgba(0,0,0, 0.95);
            color: var(--text) !important;
            transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
               font-family: 'raleway', sans-serif !important;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .sticky-header.visible { top: 0; }
        
        /* Sticky header doesn't have a logo, so adjust groups */
        .sticky-header .nav-links { justify-content: center; gap: 40px; }

        /* --- HERO SECTION --- */
        #hero {
            height: 80vh;
            background: url('Hammerheads+Sign.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-top: calc(-1 *  var(--header-h) - 20px);
        }

        #footer {
            background-color: black;
            color: rgba(255,255,255,0.5) !important;
            height: auto !important;
            min-height: 0px;
            text-align: center;
        }

        #footer p {
            color: rgba(255,255,255,0.5) !important;
        }

        p a {
            color: rgba(0,0,0,0.8);
        }

          #footer a {
            color: rgba(255,255,255,0.8)
        }

        /* --- CONTENT SECTIONS --- */
        section { min-height: 50vh; padding: 80px 40px; text-align: left;  }
        .menu-header, .pdf-download { padding-left: 40px;   }
        h1 { font-size: 48px; margin-bottom: 20px; font-family: "scheme", sans-serif; }
        p {
            font-family: "pragmatica", sans-serif;
            color: rgba(0,0,0,0.5);
            letter-spacing: 0.4px;
            margin-bottom: 1em;
            line-height: 1.6em;
        }
        /* --- HAMBURGER (Mobile) --- */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            background: none; border: none;
        }

        @media (max-width: 768px) {
        .menu-header, .pdf-download { padding-left: 40px;   }

            .hamburger { display: block; }
            .nav-links {
                position: fixed; left: -100%; top: 70px; 
                flex-direction: column; background: black; 
                width: 100%; height: 100vh; transition: 0.3s;
                justify-content: flex-start; padding-top: 40px;
            }
            .nav-group { flex-direction: column; align-items: center; gap: 30px; width: 100%; }
            .nav-links.mobile-open { left: 0; }
            .logo img{
                height: 50px !important;
                margin-top: -25px !important;
             }
            .initial-header .nav-container { justify-content: flex-start; gap: 20px; }
            .sticky-header {
                display: none;
            }
            .menu-trigger {
                display: block !important;
            }
                    section { padding: 60px 20px;  }
                     p {
            
            letter-spacing: 0.2px;
        }
   

        }
    
        .initial-header img {
            height:  var(--header-h);
        }

        
        /* 1. The Black Overlay */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000000; /* Pure black */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500; /* Make sure this is high */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "raleway";
}

/* When active, show overlay */
.mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay a {
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    text-decoration: none;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-overlay a:hover {
    color: rgba(255,255,255);

}
.mobile-overlay a.active {
    color: rgba(255,255,255);

}

/* 2. The Hamburger Button Lines */
.menu-trigger {
    background: none; border: none; cursor: pointer;
    z-index: 2000; /* Must be higher than overlay */
    width: 50px; height: 40px;
    position: fixed;
    top: 20px;
    left: 10px;
    margin-left: 10px;
    color: white;
    background: black;
    display: none;
}

.hamburger-box {
        margin-left:-30px;

}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px; height: 2px;
    
    background-color: currentColor; /* Matches header text color */
    position: absolute;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ""; top: -8px; left: 0; }
.hamburger-inner::after { content: ""; top: 8px; left: 0; }

/* 3. The "X" Transformation */
.is-active .hamburger-inner { background-color: transparent !important; }
.is-active .hamburger-inner::before { 
    transform: translateY(8px) rotate(45deg); 
    background-color: #fff; /* White X on black bg */
}
.is-active .hamburger-inner::after { 
    transform: translateY(-8px) rotate(-45deg); 
    background-color: #fff; 
}

.carousel-container {
    position: relative;
    width: 100vw;
    height: 80vh; /* Adjust height as needed */
    overflow: hidden;
    background: #000;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: contain; /* Keeps photos from stretching */
}

/* Arrows */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--accent);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 768px) {
    .carousel-container { height: 40vh; }
    .carousel-prev, .carousel-next { padding: 10px; font-size: 1rem; }
}

.location-container {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
}

.location-info {
    flex: 1; /* Takes up 50% width */
    min-width: 300px; /* Ensures it doesn't get too squished */
    text-align: left;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.address {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-map {
    flex: 1; /* Takes up 50% width */
    min-width: 300px;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-link {
    display: block;
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column; /* Forces vertical stack */
        text-align: center;
        padding: 0px;
    }
    
    .location-info {
        text-align: left;
        width: 100%;
    }

    .location-map {
        width: 100%;
        height: 300px; /* Slightly shorter map on mobile */
    }
    h1 {
        font-size: xx-large;
    }
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 95vh; /* Takes up most of the viewer height */

}

.menu-carousel {
    position: relative;
    flex: 3; /* Takes more space than thumbnails */
    overflow: hidden;
    background: #eeeeee;
    height: 85vh; /* Takes up most of the viewer height */

}

.menu-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.menu-page {
    min-width: 100%;
    height: 100%;
}

.menu-page img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows full menu without cropping */
}

/* Arrows */
.menu-prev, .menu-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
}
.menu-prev { left: 0; }
.menu-next { right: 0; }

/* Thumbnails */
.menu-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-height: 0px;
}

.thumb {
    width: 60px;
    cursor: pointer;
    text-align: center;
    opacity: 0.6;
    transition: 0.3s;
      min-height: 0px;

}

.thumb img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border: 2px solid transparent;
      min-height: 0px;

}

.thumb span { display: block; font-size: 12px; margin-top: 5px; font-weight: bold; }

.thumb.active-thumb { opacity: 1; }
.thumb.active-thumb img { border-color: var(--accent); }

/* PDF Button */

.pdf-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.pdf-btn:hover { background: var(--accent); }

#menu {
    background-color: #eeeeee;
}