/* ─── THE GREMLIN - PUBLIC SITE STYLES ─── */

:root {
    --neon-green: #39ff14;
    --neon-green-dim: rgba(57,255,20,0.4);
    --neon-green-subtle: rgba(57,255,20,0.08);
    --neon-amber: #ffae00;
    --neon-pink: #ff2d7b;
    --neon-blue: #00d4ff;
    --dark-bg: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #161616;
    --dark-border: #222222;
    --text-primary: #f0ede6;
    --text-secondary: #8a8780;
    --text-muted: #5a5855;
    --font-display: 'Dela Gothic One', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a { color: var(--neon-green); text-decoration: none; transition: color 0.3s; }
a:hover { color: #5fff4a; }
img { max-width: 100%; height: auto; }

/* ─── NAV ─── */
.gremlin-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: padding 0.3s;
}
.gremlin-nav.scrolled { padding: 0.6rem 2rem; }
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-green);
    text-decoration: none;
    text-shadow: 0 0 20px var(--neon-green-dim);
    letter-spacing: 1px;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; list-style: none; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--neon-green); }
.nav-cta {
    background: var(--neon-green) !important;
    color: #000 !important;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 1px;
}
.nav-cta:hover { box-shadow: 0 0 20px var(--neon-green-dim); color: #000 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: 0.3s; }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 2rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(57,255,20,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,174,0,0.04) 0%, transparent 50%);
}
.hero-content {
    text-align: center; position: relative; z-index: 2; max-width: 800px;
    animation: fadeUp 1s ease-out;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--neon-green);
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 2rem;
    animation: fadeUp 1s ease-out 0.2s both;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeUp 1s ease-out 0.3s both;
}
.hero h1 .accent { color: var(--neon-green); text-shadow: 0 0 40px var(--neon-green-dim); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 1s ease-out 0.5s both;
}
.hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 1s ease-out 0.7s both;
}

/* ─── BUTTONS ─── */
.btn-g {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-g-primary { background: var(--neon-green); color: #000; }
.btn-g-primary:hover { box-shadow: 0 0 30px var(--neon-green-dim); transform: translateY(-2px); color: #000; }
.btn-g-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--dark-border); }
.btn-g-outline:hover { border-color: var(--text-secondary); transform: translateY(-2px); color: var(--text-primary); }

/* ─── TONIGHT BAR ─── */
.tonight-bar {
    background: linear-gradient(90deg, var(--dark-surface), var(--dark-card), var(--dark-surface));
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; flex-wrap: wrap; position: relative;
}
.tonight-bar::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green-dim);
}
.tonight-label {
    font-family: var(--font-display);
    font-size: 0.75rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--neon-green); white-space: nowrap;
}
.tonight-info { font-size: 1rem; color: var(--text-primary); }
.tonight-info strong { color: var(--neon-amber); }

/* ─── SECTIONS ─── */
.gremlin-section { padding: 5rem 2rem; }
.gremlin-section.alt-bg { background: var(--dark-surface); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
    font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--neon-green); font-weight: 600; margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.8rem;
}
.section-subtitle {
    color: var(--text-secondary); font-size: 1rem;
    max-width: 500px; margin: 0 auto; font-weight: 300;
}

/* ─── EVENT CARDS ─── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--dark-border);
    border: 1px solid var(--dark-border);
    border-radius: 8px; overflow: hidden;
}
.event-card {
    background: var(--dark-bg); padding: 1.8rem;
    display: flex; flex-direction: column; transition: background 0.3s;
}
.event-card:hover { background: var(--dark-card); }
.event-day {
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 600;
}
.event-name {
    font-family: var(--font-display);
    font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.3;
}
.event-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem; border-radius: 3px;
    font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 0.6rem; width: fit-content;
}
.tag-music { background: rgba(255,45,123,0.15); color: var(--neon-pink); }
.tag-theme { background: rgba(0,212,255,0.15); color: var(--neon-blue); }
.tag-special { background: rgba(255,174,0,0.15); color: var(--neon-amber); }
.tag-brunch { background: rgba(57,255,20,0.15); color: var(--neon-green); }
.event-details { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; flex-grow: 1; }
.event-time { color: var(--text-muted); font-size: 0.75rem; margin-top: 0.8rem; font-weight: 500; }

/* ─── MENU ─── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}
.menu-item {
    display: flex; gap: 1rem; padding: 1.2rem; border-radius: 8px; transition: background 0.3s;
}
.menu-item:hover { background: var(--dark-surface); }
.menu-img {
    width: 80px; height: 80px; border-radius: 6px;
    background: var(--dark-card); flex-shrink: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.menu-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.menu-info .menu-desc { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; }
.menu-info .menu-price { color: var(--neon-amber); font-weight: 700; font-size: 0.85rem; margin-top: 0.3rem; }

/* ─── MUSIC ─── */
.music-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.music-card {
    background: var(--dark-bg); border: 1px solid var(--dark-border);
    border-radius: 8px; padding: 1.5rem;
    display: flex; gap: 1.2rem; transition: all 0.3s; align-items: flex-start;
}
.music-card:hover { border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255,45,123,0.08); transform: translateY(-2px); }
.music-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-amber));
    flex-shrink: 0; overflow: hidden;
}
.music-avatar img { width: 100%; height: 100%; object-fit: cover; }
.music-meta h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.music-genre { font-size: 0.7rem; color: var(--neon-pink); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 0.4rem; }
.music-date { color: var(--text-secondary); font-size: 0.85rem; }
.music-links { margin-top: 0.5rem; display: flex; gap: 0.8rem; }
.music-links a { color: var(--text-muted); font-size: 0.75rem; }
.music-links a:hover { color: var(--neon-green); }

/* ─── BEER ─── */
.tap-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem;
}
.tap-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.2rem; border-radius: 6px;
    border: 1px solid var(--dark-border); transition: all 0.3s;
}
.tap-item:hover { border-color: var(--neon-amber); background: var(--dark-surface); }
.tap-name { font-weight: 600; font-size: 0.95rem; }
.tap-style { color: var(--text-secondary); font-size: 0.8rem; }
.tap-abv { color: var(--neon-amber); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }

/* ─── CATERING ─── */
.catering-features {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin: 2.5rem 0; text-align: center;
}
.catering-feature h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.catering-feature p { color: var(--text-secondary); font-size: 0.82rem; }

/* ─── INQUIRY FORM ─── */
.inquiry-form {
    max-width: 700px; margin: 0 auto;
}
.inquiry-form .form-control, .inquiry-form .form-select {
    background: var(--dark-bg); border: 1px solid var(--dark-border);
    color: var(--text-primary); padding: 0.8rem 1rem;
    border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem;
}
.inquiry-form .form-control:focus, .inquiry-form .form-select:focus {
    border-color: var(--neon-green); outline: none;
    box-shadow: 0 0 0 2px rgba(57,255,20,0.15);
}
.inquiry-form label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.4rem; display: block; }

/* ─── EMAIL SIGNUP ─── */
.signup-bar {
    max-width: 550px; margin: 2rem auto 0;
    display: flex; gap: 0.5rem;
}
.signup-bar input {
    flex: 1; background: var(--dark-bg); border: 1px solid var(--dark-border);
    border-radius: 4px; padding: 0.8rem 1rem;
    color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
}
.signup-bar input::placeholder { color: var(--text-muted); }
.signup-bar input:focus { border-color: var(--neon-green); outline: none; }
.signup-bar button {
    background: var(--neon-green); color: #000; border: none;
    padding: 0.8rem 1.5rem; border-radius: 4px;
    font-family: var(--font-body); font-weight: 700;
    font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: box-shadow 0.3s; white-space: nowrap;
}
.signup-bar button:hover { box-shadow: 0 0 20px var(--neon-green-dim); }

/* ─── FOOTER ─── */
.gremlin-footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 2rem 2rem;
}
.footer-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem; margin-bottom: 3rem;
}
.footer-col h4 {
    font-family: var(--font-display); font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 1rem; color: var(--neon-green);
}
.footer-col p, .footer-col a {
    color: var(--text-secondary); font-size: 0.85rem;
    line-height: 1.8; text-decoration: none; display: block;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 2rem; border-top: 1px solid var(--dark-border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.75rem; }

/* Map */
.map-wrap {
    width: 100%; height: 220px; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--dark-border); margin-top: 1rem;
    filter: grayscale(0.8) brightness(0.7); transition: filter 0.3s;
}
.map-wrap:hover { filter: grayscale(0.3) brightness(0.85); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
        padding: 1.5rem 2rem; gap: 1.2rem;
        border-bottom: 1px solid var(--dark-border);
    }
    .nav-toggle { display: block; }
    .tonight-bar { flex-direction: column; gap: 0.5rem; text-align: center; }
    .tonight-bar::before { top: 0; bottom: auto; width: 100%; height: 2px; }
    .events-grid { grid-template-columns: 1fr; }
    .music-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .signup-bar { flex-direction: column; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .gremlin-section { padding: 3.5rem 1.5rem; }
}
