website/css/style.css

733 lines
24 KiB
CSS

/* ── 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 {
--bg: #0c0a08;
--bg-2: #131008;
--bg-card: #1c1710;
--bg-form: #221c14;
--border: #2e2418;
--border-lt: #3e3428;
--gold: #d4900a;
--gold-lt: #f0b428;
--gold-dk: #9a6a08;
--gold-glow: rgba(212,144,10,.18);
--crimson: #b83020;
--amber: #e07818;
--text: #ede8e2;
--text-2: #c0b8ae;
--muted: #8a8078;
--radius: 6px;
--radius-lg: 10px;
--shadow: 0 4px 24px rgba(0,0,0,.5);
--font-brand: 'Cinzel Decorative', serif;
--font-ui: 'Orbitron', monospace;
--font-body: 'Inter', system-ui, sans-serif;
--nav-h: 64px;
}
/* ── 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 { line-height: 1.2; }
.brand-font { font-family: var(--font-brand); }
.ui-font { font-family: var(--font-ui); }
.label {
font-family: var(--font-ui);
font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
color: var(--gold); display: block; margin-bottom: .5rem;
}
.page-title {
font-family: var(--font-brand);
font-size: clamp(1.8rem, 5vw, 3rem);
color: var(--text);
}
.section-title {
font-family: var(--font-brand);
font-size: clamp(1.5rem, 3.5vw, 2.4rem);
color: var(--text);
margin-bottom: .75rem;
}
.section-desc {
color: var(--text-2);
font-size: .97rem;
line-height: 1.75;
max-width: 500px;
}
/* ── 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);
}
.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(12,10,8,.88);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
text-decoration: none;
font-family: var(--font-brand);
font-size: .95rem;
color: var(--gold);
letter-spacing: .04em;
display: flex; align-items: center; gap: .5rem;
white-space: nowrap;
}
.nav-logo .dragon { font-size: 1.5rem; }
.nav-links {
display: flex; align-items: center; gap: 2rem;
list-style: none;
}
.nav-links a {
text-decoration: none;
font-size: .78rem; font-weight: 500;
letter-spacing: .1em; text-transform: uppercase;
color: var(--text-2);
transition: color .18s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-right {
display: flex; align-items: center; gap: 1.25rem;
}
.nav-find {
text-decoration: none;
font-size: .78rem; color: var(--muted);
transition: color .18s;
}
.nav-find:hover { color: var(--gold); }
/* hamburger */
.nav-toggle {
display: none;
flex-direction: column; gap: 5px;
cursor: pointer; padding: 4px;
background: none; border: none;
}
.nav-toggle span {
display: block; width: 22px; height: 2px;
background: var(--text-2);
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: .45rem;
padding: .7rem 1.5rem; border-radius: var(--radius);
font-size: .82rem; font-weight: 600;
letter-spacing: .08em; text-transform: uppercase;
text-decoration: none; cursor: pointer;
transition: all .2s;
}
.btn-gold {
background: var(--gold); color: #000;
}
.btn-gold:hover {
background: var(--gold-lt);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212,144,10,.4);
}
.btn-outline {
background: transparent; color: var(--text);
border: 1px solid var(--border-lt);
}
.btn-outline:hover {
border-color: var(--gold); color: var(--gold);
transform: translateY(-2px);
}
.btn-sm { padding: .45rem 1rem; font-size: .75rem; }
/* ── BADGE / PILL ────────────────────────────────────── */
.badge {
display: inline-block;
font-family: var(--font-ui);
font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
padding: .3rem .9rem; border-radius: 3px;
}
.badge-gold {
background: rgba(212,144,10,.1);
border: 1px solid rgba(212,144,10,.35);
color: var(--gold);
}
.badge-purple {
background: rgba(109,40,217,.12);
border: 1px solid rgba(109,40,217,.35);
color: #b8a0f8;
}
.badge-red {
background: rgba(184,48,32,.12);
border: 1px solid rgba(184,48,32,.35);
color: #f08070;
}
/* ── HERO ────────────────────────────────────────────── */
.hero {
position: relative;
min-height: 100vh;
display: flex; align-items: center; justify-content: center; text-align: center;
padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0; z-index: 0;
background:
radial-gradient(ellipse 70% 50% at 50% 110%, rgba(109,40,217,.16) 0%, transparent 68%),
radial-gradient(ellipse 50% 40% at 10% 60%, rgba(184,48,32,.1) 0%, transparent 65%),
radial-gradient(ellipse 50% 40% at 90% 60%, rgba(212,144,10,.07) 0%, transparent 65%),
linear-gradient(180deg, #0c0a08 0%, #100e06 55%, #0c0a08 100%);
}
.hero-bg::after {
content: '';
position: absolute; inset: 0;
background-image:
radial-gradient(circle, rgba(212,144,10,.5) 1px, transparent 1px),
radial-gradient(circle, rgba(212,144,10,.2) 1px, transparent 1px);
background-size: 52px 52px, 88px 88px;
background-position: 0 0, 26px 26px;
opacity: .1;
animation: drift 35s linear infinite;
}
@keyframes drift { to { transform: translateY(-80px); } }
.hero-body { position: relative; z-index: 1; max-width: 820px; }
.hero-icon {
font-size: 5rem; line-height: 1; display: block;
margin-bottom: 1rem;
filter: drop-shadow(0 0 24px rgba(212,144,10,.5));
animation: glow 3.5s ease-in-out infinite;
}
@keyframes glow {
0%,100% { filter: drop-shadow(0 0 18px rgba(212,144,10,.4)); }
50% { filter: drop-shadow(0 0 44px rgba(212,144,10,.85)) drop-shadow(0 0 60px rgba(184,48,32,.3)); }
}
.hero-title {
font-family: var(--font-brand);
font-size: clamp(2.5rem, 8vw, 5rem);
color: var(--gold);
text-shadow: 0 0 50px rgba(212,144,10,.3);
margin-bottom: .4rem;
}
.hero-place {
font-family: var(--font-ui);
font-size: clamp(.68rem, 1.6vw, .9rem);
color: var(--muted);
letter-spacing: .35em; text-transform: uppercase;
margin-bottom: 1.5rem;
}
.hero-copy {
font-size: 1.05rem; color: var(--text-2);
max-width: 540px; margin: 0 auto 1rem;
line-height: 1.8;
}
.hero-note {
display: inline-block;
font-size: .78rem; color: #b8a0f8;
border: 1px solid rgba(109,40,217,.35);
background: rgba(109,40,217,.1);
padding: .36rem 1rem; border-radius: 3px;
margin-bottom: 2.5rem;
}
.hero-ctas {
display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center;
}
/* ── PAGE HERO (subpages) ────────────────────────────── */
.page-hero {
padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
text-align: center;
background:
radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212,144,10,.08) 0%, transparent 70%),
var(--bg);
border-bottom: 1px solid var(--border);
}
.page-hero .label { justify-content: center; display: flex; }
.page-hero .page-title { margin-bottom: .75rem; }
.page-hero .section-desc { margin: 0 auto; text-align: center; }
/* ── GAME TAG ────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
font-family: var(--font-ui);
font-size: .58rem; letter-spacing: .06em;
padding: .32rem .75rem; border-radius: 3px;
background: var(--bg-card); border: 1px solid var(--border);
color: var(--muted);
transition: border-color .18s, color .18s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }
/* ── VISUAL PANELS ───────────────────────────────────── */
.panel {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
}
/* arcade cabinet mock */
.cabinet {
aspect-ratio: 3/4;
display: flex; flex-direction: column;
}
.cabinet-screen-wrap {
flex: 1;
background: linear-gradient(135deg, #100e06 0%, #1c1810 100%);
display: flex; align-items: center; justify-content: center;
padding: 2rem 1.5rem;
}
.cabinet-screen {
background: rgba(0,0,0,.7);
border: 2px solid var(--gold-dk);
border-radius: 4px;
padding: 1.5rem 2rem;
text-align: center; width: 100%;
box-shadow: 0 0 20px rgba(212,144,10,.15), inset 0 0 18px rgba(0,0,0,.4);
}
.screen-title {
font-family: var(--font-ui);
font-size: 1.3rem; letter-spacing: .2em;
color: var(--gold);
animation: pulse 2.2s ease-in-out infinite;
margin-bottom: .2rem;
}
@keyframes pulse {
0%,100% { text-shadow: 0 0 6px var(--gold); }
50% { text-shadow: 0 0 24px var(--gold), 0 0 46px rgba(212,144,10,.5); }
}
.screen-sub {
font-family: var(--font-ui); font-size: .5rem;
letter-spacing: .28em; text-transform: uppercase;
color: var(--crimson); margin-bottom: 1rem;
}
.screen-insert {
font-family: var(--font-ui); font-size: .48rem;
letter-spacing: .22em; text-transform: uppercase;
color: var(--muted);
animation: blink 1.3s step-end infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.cabinet-controls {
background: #1a1610;
border-top: 1px solid var(--border);
padding: .9rem 1.5rem;
display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.stick {
width: 18px; height: 18px; border-radius: 50%;
background: #282218; border: 2px solid #383228;
}
.btn-ab {
width: 13px; height: 13px; border-radius: 50%;
border: 1px solid rgba(255,255,255,.15);
}
/* board game visual */
.board-visual {
aspect-ratio: 4/3;
display: flex; align-items: center; justify-content: center;
position: relative; overflow: hidden;
}
.board-visual::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 35% 35%, rgba(109,40,217,.12) 0%, transparent 60%),
radial-gradient(circle at 72% 72%, rgba(14,116,144,.08) 0%, transparent 60%);
}
.board-art { position: relative; z-index: 1; text-align: center; }
.board-art .icon { font-size: 4rem; display: block; margin-bottom: .5rem; }
.board-art .caption {
font-family: var(--font-ui); font-size: .58rem;
letter-spacing: .28em; text-transform: uppercase;
color: var(--muted);
}
/* ── GAME CATEGORY CARDS ─────────────────────────────── */
.game-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.game-cat {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 1rem 1.2rem;
transition: border-color .18s;
}
.game-cat:hover { border-color: var(--gold-glow); }
.cat-title {
font-family: var(--font-ui); font-size: .58rem;
letter-spacing: .2em; text-transform: uppercase;
color: var(--gold); margin-bottom: .6rem;
}
.cat-games { list-style: none; }
.cat-games li {
font-size: .87rem; color: var(--text-2);
padding: .18rem 0 .18rem 1rem; position: relative;
}
.cat-games li::before {
content: '▸'; position: absolute; left: 0;
color: var(--gold-dk); font-size: .65rem;
top: 50%; transform: translateY(-50%);
}
/* ── EVENTS ──────────────────────────────────────────── */
.events-intro {
text-align: center; max-width: 600px; margin: 0 auto 3.5rem;
color: var(--text-2);
}
.month-group { margin-bottom: 3rem; }
.month-heading {
font-family: var(--font-ui);
font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
color: var(--gold);
padding-bottom: .75rem;
border-bottom: 1px solid var(--border);
margin-bottom: 1rem;
}
.events-grid { display: grid; gap: .75rem; }
.event-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); overflow: hidden;
transition: border-color .2s;
}
.event-card:hover { border-color: var(--border-lt); }
.event-card.special { border-color: rgba(212,144,10,.3); }
.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: 4px; text-align: center;
padding: .4rem .2rem;
}
.event-date-box .day {
font-family: var(--font-ui); font-size: 1.3rem;
color: var(--gold); line-height: 1; display: block;
}
.event-date-box .weekday {
font-family: var(--font-ui); font-size: .48rem;
letter-spacing: .18em; 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-family: var(--font-ui); font-size: .58rem;
letter-spacing: .1em; color: var(--muted);
}
.event-chevron {
color: var(--muted); font-size: .75rem;
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(--text-2); font-size: .92rem; margin-bottom: .75rem; }
.event-detail .btn { margin-top: .5rem; }
/* ── 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);
background: var(--bg-card);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.info-block { margin-bottom: 2rem; }
.info-block .label { margin-bottom: .75rem; }
.hours-list { list-style: none; }
.hours-list li {
display: flex; justify-content: space-between; gap: 1rem;
font-size: .88rem; color: var(--text-2);
padding: .3rem 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(--text-2);
padding: .35rem 0;
}
.contact-list a { text-decoration: none; transition: color .18s; }
.contact-list a:hover { color: var(--gold); }
.contact-icon { font-size: 1rem; flex-shrink: 0; }
/* ── 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;
transition: border-color .2s, transform .2s, box-shadow .2s;
}
.booking-card:hover {
border-color: var(--gold);
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.booking-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.booking-card .title {
font-family: var(--font-brand); font-size: 1.2rem;
color: var(--text); margin-bottom: .5rem;
}
.booking-card .desc { font-size: .88rem; color: var(--text-2); line-height: 1.6; }
.booking-card .avail {
display: inline-block; margin-top: 1rem;
font-family: var(--font-ui); font-size: .55rem;
letter-spacing: .2em; text-transform: uppercase;
padding: .25rem .75rem; border-radius: 3px;
}
.avail-open { background: rgba(34,197,94,.1); color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.avail-soon { background: rgba(212,144,10,.1); color: var(--gold); border: 1px solid rgba(212,144,10,.25); }
/* ── FORMS ───────────────────────────────────────────── */
.booking-layout {
display: grid; grid-template-columns: 1fr 1fr;
gap: 3rem; align-items: start;
max-width: 900px; margin: 0 auto;
}
.booking-info .label { margin-bottom: .5rem; }
.booking-info h2 { font-family: var(--font-brand); font-size: 1.6rem; color: var(--text); margin-bottom: .75rem; }
.booking-info p { color: var(--text-2); font-size: .93rem; line-height: 1.7; margin-bottom: 1rem; }
.booking-info .detail-list { list-style: none; }
.booking-info .detail-list li {
display: flex; align-items: center; gap: .6rem;
color: var(--text-2); font-size: .88rem; padding: .28rem 0;
}
.detail-list .dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--gold); flex-shrink: 0;
}
.form-card {
background: var(--bg-form);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
}
.form-card h3 {
font-family: var(--font-brand); font-size: 1.1rem;
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-family: var(--font-ui); font-size: .58rem;
letter-spacing: .18em; text-transform: uppercase;
color: var(--muted); margin-bottom: .4rem;
}
.field input,
.field select {
width: 100%;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: .65rem .85rem;
color: var(--text); font-size: .9rem;
transition: border-color .18s;
appearance: none;
-webkit-appearance: none;
}
.field input:focus,
.field select:focus { border-color: var(--gold); }
.field input::placeholder { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-btn {
width: 100%; margin-top: .5rem;
background: var(--gold); color: #000;
padding: .8rem; border-radius: var(--radius);
font-size: .85rem; font-weight: 700;
letter-spacing: .1em; text-transform: uppercase;
cursor: pointer;
transition: background .18s, transform .1s;
}
.form-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }
.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-brand); color: var(--gold); margin-bottom: .5rem; }
.form-success p { color: var(--text-2); font-size: .9rem; }
/* ── FOOTER ──────────────────────────────────────────── */
footer {
background: #080605;
border-top: 1px solid var(--border);
padding: 3.5rem 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-brand); font-size: 1rem;
color: var(--gold);
display: flex; align-items: center; gap: .45rem;
margin-bottom: .6rem;
}
.footer-tagline { color: var(--muted); font-size: .85rem; line-height: 1.65; margin-bottom: 1rem; }
.footer-contact a, .footer-contact span {
display: flex; align-items: center; gap: .5rem;
color: var(--muted); font-size: .82rem; text-decoration: none;
margin-bottom: .35rem; transition: color .18s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-col-head {
font-family: var(--font-ui); font-size: .58rem;
letter-spacing: .22em; text-transform: uppercase;
color: var(--gold); margin-bottom: .8rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .35rem; }
.footer-links a {
color: var(--muted); font-size: .82rem; text-decoration: none;
transition: color .18s;
}
.footer-links a:hover { color: var(--gold); }
.footer-hours { list-style: none; }
.footer-hours li {
display: flex; justify-content: space-between;
font-size: .82rem; color: var(--muted);
padding: .18rem 0;
}
.footer-hours .day { color: var(--text-2); }
.footer-bottom {
border-top: 1px solid var(--border);
padding-top: 1.25rem;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: .5rem;
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .78rem; color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }
/* ── MISC ────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.cta-strip {
background: linear-gradient(135deg, #1c1710, #221a10);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2.5rem;
text-align: center;
}
.cta-strip h2 { font-family: var(--font-brand); color: var(--text); margin-bottom: .5rem; font-size: 1.6rem; }
.cta-strip p { color: var(--text-2); margin-bottom: 1.5rem; font-size: .95rem; }
/* ── 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: rgba(12,10,8,.97); backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
padding: 1.5rem 2rem; gap: 1.25rem;
}
.nav.menu-open .nav-find {
display: block;
position: absolute; top: calc(var(--nav-h) + 9rem); left: 0; right: 0;
background: rgba(12,10,8,.97);
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; }
}