website/css/style.css
2026-06-05 11:42:19 +00:00

801 lines
27 KiB
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea {
font-family: inherit; font-size: inherit; color: inherit;
background: none; border: none; outline: none;
}
/* ── TOKENS ─────────────────────────────────────────── */
:root {
/* Warm cream palette — matched from Lovable design tokens */
--bg: hsl(30, 25%, 96%); /* #f5ede3 warm cream */
--bg-2: hsl(35, 30%, 92%); /* slightly deeper warm cream */
--bg-card: hsl(30, 20%, 93%); /* #eee3d9 card surface */
--bg-dark: hsl(30, 15%, 88%); /* warm light gray */
--border: hsl(30, 20%, 82%); /* #d4c4b4 warm beige border */
--border-dk: hsl(30, 18%, 72%); /* deeper warm border */
/* Primary: warm rust/terracotta */
--primary: hsl(25, 65%, 38%); /* #9f4d1a */
--primary-lt: hsl(25, 65%, 46%); /* hover */
--primary-fg: hsl(40, 30%, 96%); /* text on primary bg */
/* Accent: warm amber gold */
--gold: hsl(38, 80%, 55%); /* #e8a32a amber gold */
--gold-lt: hsl(38, 85%, 63%);
--gold-dk: hsl(35, 70%, 40%);
--gold-soft: hsl(38, 80%, 55%, .12);
/* Warm neutral tones */
--warm-brown: hsl(25, 40%, 25%); /* dark warm brown */
--warm-wood: hsl(25, 35%, 35%); /* medium wood tone */
--warm-amber: hsl(30, 70%, 45%); /* amber */
/* Text */
--text: hsl(25, 30%, 12%); /* #281d15 very dark brown */
--text-2: hsl(25, 20%, 30%); /* medium warm brown */
--muted: hsl(25, 10%, 45%); /* #7a7268 warm gray-brown */
--muted-lt: hsl(25, 8%, 60%);
/* Arcade section — dark purple exception */
--arc-bg: hsl(270, 55%, 10%); /* #1a0a30 very dark purple */
--arc-surface: hsl(268, 50%, 14%); /* #231435 */
--arc-border: hsl(270, 45%, 28%); /* #3d1a6e */
--arc-accent: hsl(270, 90%, 70%); /* #a855f7 bright purple */
--arc-muted: hsl(268, 40%, 75%);
--arc-fg: hsl(270, 100%, 97%);
/* Booking category colors */
--book-dnd: hsl(5, 35%, 50%); /* warm red/rust */
--book-arc: hsl(280, 70%, 55%); /* purple */
--book-tbl: hsl(145, 55%, 38%); /* forest green */
/* Typography */
--font-heading: 'Playfair Display', Georgia, serif;
--font-body: 'Inter', system-ui, sans-serif;
/* Spacing / shape */
--radius: 0.75rem;
--radius-sm: 0.5rem;
--radius-lg: 1rem;
--nav-h: 64px;
--shadow-sm: 0 1px 3px rgba(40, 20, 10, .08), 0 1px 2px rgba(40, 20, 10, .06);
--shadow: 0 4px 12px rgba(40, 20, 10, .10), 0 2px 4px rgba(40, 20, 10, .06);
--shadow-lg: 0 10px 30px rgba(40, 20, 10, .14), 0 4px 8px rgba(40, 20, 10, .08);
}
/* ── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.65;
overflow-x: hidden;
}
/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 {
font-family: var(--font-heading);
line-height: 1.25;
color: var(--text);
}
.label {
font-size: .72rem;
font-weight: 600;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--primary);
display: block;
margin-bottom: .5rem;
}
.page-title {
font-size: clamp(1.9rem, 5vw, 3rem);
font-weight: 700;
margin-bottom: .75rem;
}
.section-title {
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
font-weight: 700;
margin-bottom: .75rem;
}
.section-desc {
color: var(--muted);
font-size: .97rem;
line-height: 1.75;
max-width: 520px;
}
/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 2rem; }
.section--alt { background: var(--bg-2); }
.section--border {
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.section--dark {
background: var(--arc-bg);
border-color: var(--arc-border);
color: var(--arc-fg);
}
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3.5rem;
align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
/* ── NAV ─────────────────────────────────────────────── */
.nav {
position: sticky; top: 0; z-index: 300;
height: var(--nav-h);
display: flex; align-items: center; justify-content: space-between;
padding: 0 2.5rem;
background: rgba(245, 237, 227, .92);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
text-decoration: none;
font-family: var(--font-heading);
font-size: 1.15rem;
font-weight: 700;
color: var(--text);
display: flex; align-items: center; gap: .5rem;
white-space: nowrap;
}
.nav-logo .dragon { font-size: 1.4rem; }
.nav-logo span:last-child { color: var(--primary); }
.nav-links {
display: flex; align-items: center; gap: 2rem;
list-style: none;
}
.nav-links a {
text-decoration: none;
font-size: .875rem;
font-weight: 500;
color: var(--muted);
transition: color .18s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-find {
text-decoration: none;
font-size: .875rem;
color: var(--muted);
transition: color .18s;
}
.nav-find:hover { color: var(--primary); }
/* hamburger */
.nav-toggle {
display: none;
flex-direction: column; gap: 5px;
cursor: pointer; padding: 4px;
}
.nav-toggle span {
display: block; width: 22px; height: 2px;
background: var(--text);
border-radius: 2px;
transition: all .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
display: inline-flex; align-items: center; gap: .5rem;
padding: .65rem 1.5rem;
border-radius: var(--radius);
font-size: .875rem; font-weight: 600;
text-decoration: none; cursor: pointer;
transition: all .2s;
white-space: nowrap;
}
.btn-primary {
background: var(--primary);
color: var(--primary-fg);
}
.btn-primary:hover {
background: var(--primary-lt);
transform: translateY(-1px);
box-shadow: var(--shadow);
}
.btn-gold {
background: var(--gold);
color: hsl(25, 30%, 10%);
}
.btn-gold:hover {
background: var(--gold-lt);
transform: translateY(-1px);
box-shadow: 0 4px 14px hsla(38, 80%, 55%, .35);
}
.btn-outline {
background: transparent;
color: var(--text);
border: 1.5px solid var(--border-dk);
}
.btn-outline:hover {
border-color: var(--primary);
color: var(--primary);
background: hsl(25, 65%, 38%, .05);
transform: translateY(-1px);
}
.btn-outline-light {
background: transparent;
color: var(--arc-fg);
border: 1.5px solid var(--arc-border);
}
.btn-outline-light:hover {
border-color: var(--arc-accent);
color: var(--arc-accent);
transform: translateY(-1px);
}
.btn-sm { padding: .45rem 1.1rem; font-size: .8rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
/* ── BADGE / PILL ────────────────────────────────────── */
.badge {
display: inline-flex; align-items: center;
font-size: .72rem; font-weight: 600;
letter-spacing: .06em;
padding: .3rem .85rem;
border-radius: 999px;
}
.badge-warm {
background: hsl(38, 80%, 55%, .15);
color: hsl(35, 70%, 35%);
border: 1px solid hsl(38, 80%, 55%, .3);
}
.badge-primary {
background: hsl(25, 65%, 38%, .1);
color: var(--primary);
border: 1px solid hsl(25, 65%, 38%, .25);
}
.badge-purple {
background: hsl(270, 70%, 60%, .15);
color: hsl(270, 70%, 70%);
border: 1px solid hsl(270, 70%, 60%, .3);
}
.badge-green {
background: hsl(145, 55%, 38%, .12);
color: hsl(145, 45%, 30%);
border: 1px solid hsl(145, 55%, 38%, .25);
}
.badge-dnd {
background: hsl(5, 35%, 50%, .12);
color: hsl(5, 45%, 42%);
border: 1px solid hsl(5, 35%, 50%, .25);
}
/* ── HERO ────────────────────────────────────────────── */
.hero {
position: relative;
min-height: 90vh;
display: flex; align-items: center; justify-content: center; text-align: center;
padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
overflow: hidden;
background: hsl(25, 30%, 12%);
}
.hero-photo {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: center;
z-index: 0;
}
.warm-overlay {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(to bottom, rgba(40,29,21,.62), rgba(40,29,21,.45));
}
.hero-body { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
font-family: var(--font-heading);
font-size: .85rem; font-weight: 400;
text-transform: uppercase; letter-spacing: .3em;
color: var(--gold);
margin-bottom: 1rem; display: block;
}
.hero-title {
font-family: var(--font-heading);
font-size: clamp(2.75rem, 8vw, 5.5rem);
font-weight: 700;
color: hsl(40, 30%, 96%);
letter-spacing: -.02em;
margin-bottom: .3rem;
text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-place {
font-size: .9rem; font-weight: 500;
color: hsl(30, 20%, 75%);
letter-spacing: .12em; text-transform: uppercase;
margin-bottom: 1.5rem;
}
.hero-copy {
font-size: 1.1rem;
color: hsl(30, 15%, 88%);
max-width: 520px; margin: 0 auto 2.5rem;
line-height: 1.8;
}
.hero-ctas {
display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center;
}
/* colored booking CTAs matching Lovable */
.btn-book-dnd {
background: hsl(5, 35%, 50%); color: #fff;
}
.btn-book-dnd:hover { background: hsl(5, 40%, 42%); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-book-arc {
background: hsl(280, 25%, 48%); color: #fff;
}
.btn-book-arc:hover { background: hsl(280, 30%, 40%); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-book-tbl {
background: hsl(145, 22%, 38%); color: #fff;
}
.btn-book-tbl:hover { background: hsl(145, 25%, 30%); transform: translateY(-1px); box-shadow: var(--shadow); }
/* ── PAGE HERO (subpages) ────────────────────────────── */
.page-hero {
padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
text-align: center;
background:
radial-gradient(ellipse 50% 70% at 50% 0%, hsl(25, 65%, 38%, .07) 0%, transparent 70%),
var(--bg-2);
border-bottom: 1px solid var(--border);
}
.page-hero .label { display: flex; justify-content: center; }
.page-hero .section-desc { margin: 0 auto; }
/* ── TAGS ────────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.tag {
font-size: .8rem; font-weight: 500;
padding: .3rem .85rem; border-radius: 999px;
background: var(--bg-card);
border: 1px solid var(--border);
color: var(--text-2);
transition: border-color .18s, color .18s, background .18s;
}
.tag:hover {
border-color: var(--primary);
color: var(--primary);
background: hsl(25, 65%, 38%, .05);
}
/* ── PANELS / CARDS ──────────────────────────────────── */
.panel {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
overflow: hidden;
}
/* ── SECTION IMAGES ──────────────────────────────────── */
.section-img {
border-radius: var(--radius-lg);
box-shadow: 0 20px 50px rgba(0,0,0,.18);
width: 100%; height: auto;
display: block;
object-fit: cover; aspect-ratio: 16/9;
}
.img-frame { position: relative; }
.img-frame--arc::after {
content: '';
position: absolute; bottom: -12px; right: -12px;
width: 80px; height: 80px; border-radius: var(--radius-lg);
background: hsl(270, 90%, 70%, .2);
z-index: -1;
}
.img-frame--board::after {
content: '';
position: absolute; top: -12px; left: -12px;
width: 80px; height: 80px; border-radius: var(--radius-lg);
background: hsl(25, 65%, 38%, .1);
z-index: -1;
}
/* ── GAME CATEGORY CARDS ─────────────────────────────── */
.game-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.game-cat {
background: var(--bg); border: 1px solid var(--border);
border-radius: var(--radius); padding: 1.1rem 1.25rem;
box-shadow: var(--shadow-sm);
transition: border-color .18s, box-shadow .18s;
}
.game-cat:hover {
border-color: var(--primary);
box-shadow: var(--shadow);
}
.cat-title {
font-size: .75rem; font-weight: 700;
letter-spacing: .1em; text-transform: uppercase;
color: var(--primary); margin-bottom: .65rem;
}
.cat-games { list-style: none; }
.cat-games li {
font-size: .875rem; color: var(--text-2);
padding: .2rem 0 .2rem 1rem; position: relative;
}
.cat-games li::before {
content: ''; position: absolute; left: 0;
color: var(--primary); font-size: .85rem;
top: 50%; transform: translateY(-50%);
}
/* ── EVENTS ──────────────────────────────────────────── */
.events-intro {
text-align: center; max-width: 600px; margin: 0 auto 3rem;
}
.month-group { margin-bottom: 3rem; }
.month-heading {
font-family: var(--font-heading);
font-size: 1.1rem; font-weight: 700;
color: var(--text);
padding-bottom: .6rem;
border-bottom: 2px solid var(--border);
margin-bottom: 1rem;
}
.events-grid { display: grid; gap: .6rem; }
.event-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); overflow: hidden;
box-shadow: var(--shadow-sm);
transition: border-color .2s, box-shadow .2s;
}
.event-card:hover { border-color: var(--border-dk); box-shadow: var(--shadow); }
.event-card.special { border-color: hsl(38, 80%, 55%, .4); }
.event-card.special .event-date-box { background: hsl(38, 80%, 55%, .1); border-color: hsl(38, 80%, 55%, .3); }
.event-card.special .event-date-box .day { color: var(--gold-dk); }
.event-summary {
display: grid;
grid-template-columns: 56px 1fr auto;
align-items: center; gap: 1rem;
padding: 1rem 1.25rem;
cursor: pointer; user-select: none;
}
.event-date-box {
background: var(--bg-2); border: 1px solid var(--border);
border-radius: var(--radius-sm); text-align: center; padding: .4rem .2rem;
}
.event-date-box .day {
font-family: var(--font-heading); font-size: 1.4rem;
color: var(--primary); line-height: 1; display: block;
}
.event-date-box .weekday {
font-size: .6rem; font-weight: 600;
letter-spacing: .15em; text-transform: uppercase;
color: var(--muted);
}
.event-meta { min-width: 0; }
.event-name {
font-weight: 600; font-size: .95rem; color: var(--text);
margin-bottom: .15rem;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.event-time {
font-size: .8rem; font-weight: 500;
color: var(--muted);
}
.event-chevron { color: var(--muted); font-size: .8rem; transition: transform .2s; flex-shrink: 0; }
.event-card.open .event-chevron { transform: rotate(180deg); }
.event-detail {
display: none; padding: 0 1.25rem 1.25rem;
border-top: 1px solid var(--border);
}
.event-card.open .event-detail { display: block; }
.event-detail p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: .75rem 0; }
/* ── FIND US / MAP ───────────────────────────────────── */
.find-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 3rem; align-items: start;
}
.map-embed {
aspect-ratio: 4/3;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--border);
box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.info-block { margin-bottom: 2rem; }
.hours-list { list-style: none; }
.hours-list li {
display: flex; justify-content: space-between; gap: 1rem;
font-size: .875rem; color: var(--muted);
padding: .35rem 0;
border-bottom: 1px solid var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text); font-weight: 500; }
.contact-list { list-style: none; }
.contact-list li {
display: flex; align-items: center; gap: .65rem;
font-size: .9rem; color: var(--muted); padding: .35rem 0;
}
.contact-list a { text-decoration: none; transition: color .18s; }
.contact-list a:hover { color: var(--primary); }
/* ── BOOKING HUB ─────────────────────────────────────── */
.booking-cards {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 1.5rem; margin-top: 2.5rem;
}
.booking-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 2rem 1.75rem;
text-decoration: none; display: block;
box-shadow: var(--shadow-sm);
transition: border-color .2s, transform .2s, box-shadow .2s;
position: relative; overflow: hidden;
}
.booking-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.booking-card--dnd:hover { border-color: var(--book-dnd); }
.booking-card--arc:hover { border-color: var(--book-arc); }
.booking-card--tbl:hover { border-color: var(--book-tbl); }
.booking-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.booking-card .title {
font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
color: var(--text); margin-bottom: .5rem;
}
.booking-card .desc { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.booking-card .avail {
display: inline-flex; align-items: center; gap: .35rem;
margin-top: 1.25rem;
font-size: .72rem; font-weight: 600;
padding: .28rem .8rem; border-radius: 999px;
}
.avail-open { background: hsl(145, 55%, 38%, .12); color: hsl(145, 45%, 30%); border: 1px solid hsl(145, 55%, 38%, .25); }
.avail-soon { background: hsl(38, 80%, 55%, .12); color: hsl(35, 60%, 35%); border: 1px solid hsl(38, 80%, 55%, .25); }
/* ── FORMS ───────────────────────────────────────────── */
.booking-layout {
display: grid; grid-template-columns: 1fr 1fr;
gap: 3.5rem; align-items: start;
max-width: 920px; margin: 0 auto;
}
.booking-info h2 { font-size: 1.65rem; margin-bottom: .75rem; }
.booking-info p { color: var(--muted); font-size: .93rem; line-height: 1.75; margin-bottom: 1.25rem; }
.detail-list { list-style: none; }
.detail-list li {
display: flex; align-items: center; gap: .65rem;
color: var(--muted); font-size: .875rem; padding: .28rem 0;
}
.detail-dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--primary); flex-shrink: 0;
}
.form-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
box-shadow: var(--shadow);
}
.form-card h3 {
font-family: var(--font-heading); font-size: 1.2rem;
color: var(--text); margin-bottom: 1.5rem;
padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.field { margin-bottom: 1.1rem; }
.field label {
display: block;
font-size: .75rem; font-weight: 600;
letter-spacing: .06em; text-transform: uppercase;
color: var(--muted); margin-bottom: .45rem;
}
.field input,
.field select {
width: 100%;
background: var(--bg); border: 1.5px solid var(--border);
border-radius: var(--radius-sm); padding: .65rem .9rem;
color: var(--text); font-size: .9rem;
transition: border-color .18s, box-shadow .18s;
appearance: none; -webkit-appearance: none;
}
.field input:focus,
.field select:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px hsl(25, 65%, 38%, .1);
}
.field input::placeholder { color: var(--muted-lt); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-btn {
width: 100%; margin-top: .5rem;
background: var(--primary); color: var(--primary-fg);
padding: .8rem; border-radius: var(--radius-sm);
font-size: .875rem; font-weight: 600;
cursor: pointer;
transition: background .18s, transform .1s, box-shadow .18s;
}
.form-btn:hover {
background: var(--primary-lt);
transform: translateY(-1px);
box-shadow: var(--shadow);
}
.form-success {
display: none; text-align: center; padding: 2rem 1rem;
}
.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-heading); color: var(--primary); margin-bottom: .5rem; }
.form-success p { color: var(--muted); font-size: .9rem; }
/* ── BACKWARDS COMPAT ALIASES ───────────────────────── */
.badge-gold { background: hsl(38, 80%, 55%, .15); color: hsl(35, 70%, 35%); border: 1px solid hsl(38, 80%, 55%, .3); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; display: inline-block; }
.contact-icon { margin-right: .15rem; }
/* ── INFO ITEMS (detail rows) ────────────────────────── */
.info-item {
display: flex; align-items: flex-start; gap: 1rem;
padding: 1rem 1.25rem;
border-radius: var(--radius);
background: var(--bg-card); border: 1px solid var(--border);
margin-bottom: .75rem;
box-shadow: var(--shadow-sm);
transition: border-color .18s;
}
.info-item:hover { border-color: var(--primary); }
.info-item .icon { font-size: 1.75rem; flex-shrink: 0; margin-top: .1rem; }
.info-item .title { font-weight: 600; font-size: .95rem; color: var(--text); margin-bottom: .2rem; }
.info-item .desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }
/* ── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
background: linear-gradient(135deg, hsl(25, 65%, 38%, .08), hsl(38, 80%, 55%, .08));
border: 1px solid hsl(38, 80%, 55%, .2);
border-radius: var(--radius-lg);
padding: 2.5rem 2rem; text-align: center;
}
.cta-strip h2 { font-size: 1.6rem; margin-bottom: .5rem; }
.cta-strip p { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; }
/* ── FOOTER ──────────────────────────────────────────── */
footer {
background: hsl(25, 30%, 12%);
color: hsl(30, 15%, 80%);
padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand {
font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
color: hsl(38, 80%, 65%);
display: flex; align-items: center; gap: .45rem; margin-bottom: .6rem;
}
.footer-tagline { color: hsl(30, 12%, 62%); font-size: .85rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact a, .footer-contact span {
display: flex; align-items: center; gap: .5rem;
color: hsl(30, 12%, 62%); font-size: .82rem;
text-decoration: none; margin-bottom: .35rem;
transition: color .18s;
}
.footer-contact a:hover { color: hsl(38, 80%, 65%); }
.footer-col-head {
font-size: .72rem; font-weight: 700;
letter-spacing: .12em; text-transform: uppercase;
color: hsl(38, 80%, 65%); margin-bottom: .85rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a {
color: hsl(30, 12%, 62%); font-size: .85rem; text-decoration: none;
transition: color .18s;
}
.footer-links a:hover { color: hsl(38, 80%, 65%); }
.footer-hours { list-style: none; }
.footer-hours li {
display: flex; justify-content: space-between;
font-size: .83rem; color: hsl(30, 12%, 62%); padding: .2rem 0;
}
.footer-hours .day { color: hsl(30, 15%, 78%); font-weight: 500; }
.footer-bottom {
border-top: 1px solid hsl(25, 25%, 20%);
padding-top: 1.25rem;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: .5rem;
}
.footer-copy { font-size: .78rem; color: hsl(30, 12%, 50%); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .78rem; color: hsl(30, 12%, 50%); text-decoration: none; }
.footer-legal a:hover { color: hsl(38, 80%, 65%); }
/* ── DARK SECTION OVERRIDES ──────────────────────────── */
.section--dark .label { color: var(--arc-accent); }
.section--dark .section-title,
.section--dark h2,
.section--dark h3 { color: var(--arc-fg); }
.section--dark .section-desc,
.section--dark p { color: var(--arc-muted); }
.section--dark .panel {
background: var(--arc-surface);
border-color: var(--arc-border);
}
.section--dark .tag {
background: hsl(268, 45%, 18%);
border-color: var(--arc-border);
color: var(--arc-muted);
}
.section--dark .tag:hover {
border-color: var(--arc-accent);
color: var(--arc-accent);
background: hsl(268, 45%, 22%);
}
/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
.nav { padding: 0 1.5rem; }
.nav-links, .nav-find { display: none; }
.nav-toggle { display: flex; }
.nav.menu-open .nav-links {
display: flex; flex-direction: column; align-items: flex-start;
position: absolute; top: var(--nav-h); left: 0; right: 0;
background: var(--bg);
border-bottom: 1px solid var(--border);
padding: 1.5rem 2rem; gap: 1.25rem;
box-shadow: var(--shadow);
}
.nav.menu-open .nav-find {
display: block;
position: absolute; top: calc(var(--nav-h) + 9.5rem); left: 0; right: 0;
background: var(--bg);
padding: 0 2rem 1.5rem;
border-bottom: 1px solid var(--border);
}
.two-col, .two-col--reverse { grid-template-columns: 1fr; direction: ltr; }
.two-col--reverse > * { direction: ltr; }
.booking-layout { grid-template-columns: 1fr; }
.booking-cards { grid-template-columns: 1fr; }
.find-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.game-cats { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
.hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
.hero-ctas .btn { justify-content: center; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; text-align: center; }
.field-row { grid-template-columns: 1fr; }
.section { padding: 3.5rem 1.25rem; }
}