/* --- Variables & Reset --- */
:root {
    --navy: #0B2545;
    --navy-light: #133E70;
    --light-blue: #8ECAE6;
    --accent: #219EBC;
    --white: #FFFFFF;
    --bg-light: #F4F6F8;
    --text-dark: #333333;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; color: var(--navy); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-2 { margin-top: 2rem; }
.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--navy); }
.lead-text { font-size: 1.2rem; max-width: 800px; margin: 0 auto 2rem; }

/* --- Top Banner --- */
.top-banner {
    background-color: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1000;
}

/* --- Navigation --- */
nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
nav.scrolled { padding: 0.5rem 0; }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 50px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

/* Mobile Menu */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--navy); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: transform 0.2s, background 0.3s;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); }
.btn-secondary { background: var(--light-blue); color: var(--navy); }
.btn-secondary:hover { background: var(--accent); color: var(--white); }
.btn-nav { padding: 0.5rem 1.5rem; }

/* --- Hero Section --- */
#hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Layouts & Containers --- */
.section-padding { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.align-stretch { align-items: stretch; }

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.card img { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 2rem; }
.card-content ul { list-style: none; margin-top: 1rem; }
.card-content ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.8rem; }
.card-content ul li::before {
    content: "🎣";
    position: absolute;
    left: 0;
    top: 0;
}
.text-link { color: var(--accent); text-decoration: none; font-weight: 600; }

/* --- Happy Hour & Forms --- */
.hh-specials { display: flex; justify-content: center; gap: 3rem; margin-bottom: 2rem; flex-wrap: wrap; }
.special { display: flex; flex-direction: column; align-items: center; background: var(--white); padding: 1.5rem 3rem; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.special .price { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.special .item { font-size: 1.2rem; font-weight: 600; color: var(--navy); }

.signup-form { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.signup-form input { padding: 0.8rem; width: 300px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-body); }

/* --- Location & Social --- */
.map-container iframe { border-radius: 8px; }
.social-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.instagram-placeholder {
    height: 200px; background: #e1e1e1; margin-top: 1rem; display: flex; align-items: center;
    justify-content: center; border-radius: 8px; font-weight: 600; color: #777;
}

/* --- Footer --- */
footer { background: var(--navy); color: var(--white); padding: 4rem 2rem 1rem; }
footer h4 { color: var(--light-blue); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer a { color: var(--white); text-decoration: none; }
footer a:hover { color: var(--light-blue); }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* --- Scroll Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Media Queries --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; width: 100%; position: absolute; top: 100%; left: 0;
        background: var(--white); flex-direction: column; padding: 1rem 0; gap: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links li { text-align: center; padding: 1rem 0; }
    .hamburger { display: flex; }
    .btn-nav { display: none; } /* Hide in mobile header to save space */
    
    .hero-content h1 { font-size: 2.5rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .signup-form { flex-direction: column; align-items: center; }
}