/var/www/sites/twin-fin/css/style.css
/* ==========================================================================
Twin Fin Restaurant & Bar — Global Stylesheet (Refreshed)
========================================================================== */
:root {
--ocean: #1E5FA8;
--ocean-light: #2B73C8;
--coral: #E0604A;
--coral-light: #F07A64;
--coral-dark: #C54E3A;
--teal: #14424A;
--teal-mid: #1D5C68;
--sand: #F7F9FC;
--sand-dark: #E8EDF4;
--white: #FFFFFF;
--text: #2C3E3F;
--text-muted: #5A7070;
--font-display: 'Fredoka One', cursive;
--font-body: 'Work Sans', sans-serif;
--r-sm: 8px;
--r-md: 14px;
--r-lg: 20px;
--r-pill: 999px;
--shadow-sm: 0 2px 8px rgba(20,66,74,0.07);
--shadow-md: 0 4px 20px rgba(20,66,74,0.10);
--shadow-lg: 0 8px 36px rgba(20,66,74,0.14);
--max-w: 1140px;
--max-w-wide: 1400px;
}
/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.65;
color: var(--text);
background-color: var(--sand);
background-image: url('images/bg-pattern-v3.png');
background-repeat: repeat;
background-size: 360px 360px;
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
/* ── Skip link ───────────────────────────────────────────────────────────── */
.skip-link {
position: absolute; top: -100%; left: 16px;
background: var(--ocean); color: var(--white);
padding: 8px 16px; border-radius: var(--r-pill);
z-index: 9999; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; }
/* Screen reader only */
.sr-only {
position: absolute; width: 1px; height: 1px;
padding: 0; margin: -1px; overflow: hidden;
clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* ── Background texture (fish & chips pattern v2) ────────────────────────── */
/* Pattern is set on body directly — content sections use opaque backgrounds to mask it */
body > * { position: relative; }
/* ==========================================================================
HEADER
========================================================================== */
.site-header {
background: var(--sand);
padding: 36px 24px 20px;
text-align: center;
}
.header-inner { max-width: var(--max-w); margin: 0 auto; }
.logo-link { display: inline-block; transition: opacity .2s; }
.logo-link:hover { opacity: .85; }
.logo-svg { width: 220px; height: auto; margin: 0 auto; }
.header-tagline {
font-family: var(--font-display);
font-size: 1.05rem;
letter-spacing: 3px;
color: var(--ocean);
margin-top: 6px;
margin-bottom: 2px;
text-transform: uppercase;
}
.header-phone {
margin-top: 6px;
font-family: var(--font-display);
font-size: 1.3rem;
letter-spacing: .5px;
}
.header-phone a {
color: var(--ocean);
transition: color .2s;
}
.header-phone a:hover { color: var(--coral); }
/* ==========================================================================
NAVIGATION
========================================================================== */
.site-nav {
position: sticky; top: 0; z-index: 200;
padding: 10px 20px;
background: transparent;
}
.nav-pill {
background: var(--coral);
border-radius: var(--r-pill);
padding: 10px 28px;
max-width: var(--max-w);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
box-shadow: 0 4px 24px rgba(224,96,74,0.28);
}
.nav-links {
display: flex; align-items: center;
gap: 2px; flex-wrap: wrap; justify-content: center;
}
.nav-links a {
font-family: var(--font-display);
font-size: .82rem;
color: rgba(255,255,255,.9);
padding: 8px 18px;
border-radius: var(--r-pill);
text-transform: uppercase;
letter-spacing: .6px;
transition: background .2s, color .2s;
white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus { background: rgba(255,255,255,.18); color: #fff; }
.nav-links a.active { background: rgba(255,255,255,.22); color: #fff; }
/* Home link in nav */
.nav-home {
font-family: var(--font-display);
font-size: .82rem;
color: rgba(255,255,255,.7) !important;
padding: 8px 14px !important;
border-radius: var(--r-pill) !important;
text-transform: uppercase !important;
letter-spacing: .6px !important;
transition: background .2s, color .2s !important;
white-space: nowrap !important;
display: flex; align-items: center; gap: 5px;
}
.nav-home:hover { background: rgba(255,255,255,.18) !important; color: #fff !important; }
.nav-home svg { width: 14px; height: 14px; fill: currentColor; }
/* Hamburger */
.nav-toggle {
display: none; background: none; border: none;
cursor: pointer; padding: 8px; z-index: 210;
}
.nav-toggle span {
display: block; width: 24px; height: 2.5px;
background: var(--white); border-radius: 2px;
transition: transform .3s, opacity .3s;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-brand-mobile {
font-family: var(--font-display);
font-size: .95rem; color: var(--white); text-transform: uppercase;
}
/* ==========================================================================
LAYOUT UTILS
========================================================================== */
.main-content { min-height: 60vh; background: var(--sand); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 24px; }
.section--md { padding: 52px 24px; }
.section--sm { padding: 36px 24px; }
/* ==========================================================================
TYPOGRAPHY
========================================================================== */
.heading-xl {
font-family: var(--font-display);
font-size: clamp(2.2rem, 5vw, 3.8rem);
color: var(--ocean); text-transform: uppercase;
line-height: 1.1; letter-spacing: 1px;
}
.heading-lg {
font-family: var(--font-display);
font-size: clamp(1.6rem, 3.5vw, 2.4rem);
color: var(--ocean); text-transform: uppercase;
line-height: 1.15;
}
.heading-md {
font-family: var(--font-display);
font-size: clamp(1.15rem, 2.5vw, 1.6rem);
color: var(--ocean); text-transform: uppercase;
line-height: 1.25;
}
.heading-coral { color: var(--coral); }
.subheading {
font-size: 1.1rem; color: var(--text-muted);
line-height: 1.65; max-width: 620px;
}
/* Accent underline */
.underline-accent {
display: inline-block;
padding-bottom: 10px;
border-bottom: 4px solid var(--coral);
}
/* Section label */
.section-label {
font-family: var(--font-display);
font-size: .75rem; letter-spacing: 2px;
text-transform: uppercase;
color: var(--coral);
display: block; margin-bottom: 10px;
}
/* ==========================================================================
BUTTONS
========================================================================== */
.btn {
display: inline-block;
font-family: var(--font-display);
font-size: 1rem; padding: 14px 40px;
border-radius: var(--r-pill); border: none;
cursor: pointer; text-transform: uppercase;
letter-spacing: .5px;
transition: background .25s, transform .15s, box-shadow .25s;
text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--coral {
background: var(--coral); color: var(--white);
box-shadow: 0 4px 18px rgba(224,96,74,.32);
}
.btn--coral:hover {
background: var(--coral-dark);
box-shadow: 0 6px 24px rgba(224,96,74,.4);
}
.btn--ocean {
background: var(--ocean); color: var(--white);
box-shadow: 0 4px 18px rgba(30,95,168,.28);
}
.btn--ocean:hover { background: var(--ocean-light); }
.btn--outline-white {
background: transparent;
border: 2px solid rgba(255,255,255,.8);
color: var(--white);
}
.btn--outline-white:hover {
background: rgba(255,255,255,.15);
border-color: #fff;
}
.btn--lg { padding: 18px 52px; font-size: 1.05rem; }
/* ==========================================================================
CTA CARDS (Homepage order buttons)
========================================================================== */
.cta-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px; max-width: 760px;
margin: 0 auto;
}
.cta-card {
background: var(--white);
border: 2.5px solid var(--ocean);
border-radius: var(--r-lg);
padding: 32px 24px; text-align: center;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
min-height: 150px;
transition: all .25s;
position: relative; overflow: hidden;
}
.cta-card::before {
content: '';
position: absolute; inset: 0;
background: var(--coral);
transform: scaleY(0); transform-origin: bottom;
transition: transform .3s ease; z-index: 0;
}
.cta-card:hover::before { transform: scaleY(1); }
.cta-card:hover { border-color: var(--coral); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card:hover .cta-card__title,
.cta-card:hover .cta-card__subtitle,
.cta-card:hover .cta-card__detail { color: var(--white); }
.cta-card__title {
font-family: var(--font-display);
font-size: 1rem; color: var(--ocean);
text-transform: uppercase; margin-bottom: 4px;
transition: color .25s;
}
.cta-card__subtitle {
font-family: var(--font-display);
font-size: .95rem; color: var(--ocean);
text-transform: uppercase; transition: color .25s;
}
.cta-card__detail {
font-size: .85rem; color: var(--coral);
font-style: italic; margin-top: 6px;
transition: color .25s;
}
/* ==========================================================================
VENUE HERO (Homepage)
========================================================================== */
.venue-hero-section {
padding: 0 24px;
max-width: var(--max-w-wide);
margin: 0 auto;
}
.venue-hero-wrap {
position: relative;
border-radius: var(--r-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.venue-hero-img {
width: 100%; height: 500px;
object-fit: cover; object-position: center 50%;
display: block;
transition: transform 6s ease;
}
.venue-hero-wrap:hover .venue-hero-img { transform: scale(1.02); }
.venue-hero-overlay {
position: absolute; inset: 0;
background: linear-gradient(
to top,
rgba(20,66,74,.7) 0%,
rgba(20,66,74,.1) 50%,
transparent 100%
);
display: flex; align-items: flex-end;
padding: 40px 40px;
}
.venue-hero-text { color: var(--white); }
.venue-hero-text h2 {
font-family: var(--font-display);
font-size: clamp(1.5rem, 3vw, 2.2rem);
text-transform: uppercase; letter-spacing: 1px;
line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.venue-hero-text p {
font-size: 1rem; margin-top: 6px;
color: rgba(255,255,255,.85);
text-shadow: 0 1px 6px rgba(0,0,0,.4);
max-width: 500px;
}
/* ==========================================================================
AREA PHOTO GALLERY
========================================================================== */
.area-gallery { padding: 20px 24px 0; max-width: var(--max-w-wide); margin: 0 auto; }
.area-gallery__inner {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}
.area-gallery__item {
position: relative;
border-radius: var(--r-md);
overflow: hidden;
box-shadow: var(--shadow-md);
}
.area-gallery__item--captioned {
display: flex;
flex-direction: column;
overflow: visible; /* allow caption to sit outside the image clip */
border-radius: var(--r-md);
}
.area-gallery__item--captioned > img {
border-radius: var(--r-md) var(--r-md) 0 0;
flex-shrink: 0;
}
.area-gallery__item--captioned > .area-gallery__label {
border-radius: 0;
}
.area-gallery__caption {
margin: 0;
padding: 10px 14px 12px;
font-size: .82rem;
line-height: 1.5;
color: var(--teal);
background: var(--sand);
text-align: center;
font-style: italic;
border-top: 2px solid var(--coral);
border-radius: 0 0 var(--r-md) var(--r-md);
box-shadow: var(--shadow-md);
}
.area-gallery__item img {
width: 100%; height: 230px;
object-fit: cover; display: block;
transition: transform .45s ease;
}
.area-gallery__item:hover img { transform: scale(1.06); }
.area-gallery__label {
position: absolute; bottom: 0; left: 0; right: 0;
background: linear-gradient(to top, rgba(20,66,74,.72) 0%, transparent 100%);
color: #fff;
font-family: var(--font-display);
font-size: .8rem; letter-spacing: 1.5px;
text-transform: uppercase;
padding: 32px 16px 14px;
}
/* ==========================================================================
HOMEPAGE INTRO / SUMMARY SECTION
========================================================================== */
.intro-section {
padding: 72px 24px;
background: var(--sand);
}
.intro-inner {
max-width: var(--max-w);
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.intro-text {}
.intro-text .section-label { margin-bottom: 12px; }
.intro-text h2 {
font-family: var(--font-display);
font-size: clamp(1.8rem, 3.5vw, 2.6rem);
color: var(--ocean); text-transform: uppercase;
line-height: 1.15; margin-bottom: 20px;
}
.intro-text p {
font-size: 1.05rem; line-height: 1.75;
color: var(--text); margin-bottom: 16px;
}
.intro-text p:last-of-type { margin-bottom: 28px; }
.intro-highlights {
display: flex; flex-direction: column; gap: 16px;
}
.intro-highlight {
background: var(--white);
border-left: 4px solid var(--coral);
border-radius: 0 var(--r-md) var(--r-md) 0;
padding: 18px 22px;
box-shadow: var(--shadow-sm);
display: flex; align-items: center; gap: 12px;
text-decoration: none; color: inherit;
transition: transform .18s, box-shadow .18s, border-color .18s;
cursor: pointer;
}
.intro-highlight:hover {
transform: translateX(4px);
box-shadow: var(--shadow-md);
border-color: var(--ocean);
}
.intro-highlight:hover strong { color: var(--coral); }
.intro-highlight > div, .intro-highlight__content { flex: 1; }
.intro-highlight strong {
font-family: var(--font-display);
color: var(--ocean); text-transform: uppercase;
font-size: .9rem; letter-spacing: .5px;
display: block; margin-bottom: 4px;
}
.intro-highlight p {
font-size: .9rem; color: var(--text-muted); line-height: 1.55; margin: 0;
}
.intro-highlight__arrow {
font-size: 1.1rem; color: var(--coral);
opacity: 0; transform: translateX(-6px);
transition: opacity .18s, transform .18s;
flex-shrink: 0; font-weight: 700;
}
.intro-highlight:hover .intro-highlight__arrow {
opacity: 1; transform: translateX(0);
}
/* Seasonal highlight — coral accent border */
.intro-highlight--seasonal {
border-left-color: var(--coral);
background: #fff8f6;
}
.intro-highlight--seasonal strong { color: var(--coral-dark, #c0452a); }
/* ==========================================================================
FEATURE STRIPS (Easter / Sharing / Lobster)
========================================================================== */
.feature-strip {
background: var(--teal);
color: var(--white);
padding: 56px 24px;
}
.feature-strip--sand {
background: var(--sand-dark);
}
.feature-strip__inner {
max-width: var(--max-w);
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 56px;
align-items: center;
}
.feature-strip__inner--reverse { direction: rtl; }
.feature-strip__inner--reverse > * { direction: ltr; }
.feature-strip__text .section-label { margin-bottom: 10px; }
.feature-strip__text .section-label--light { color: rgba(255,255,255,.6); }
.feature-strip__text h2 {
font-family: var(--font-display);
font-size: clamp(1.6rem, 3vw, 2.2rem);
text-transform: uppercase; line-height: 1.15;
margin-bottom: 16px; color: var(--white);
}
.feature-strip--sand .feature-strip__text h2 { color: var(--ocean); }
.feature-strip__text p {
font-size: 1rem; line-height: 1.75;
color: rgba(255,255,255,.82); margin-bottom: 12px;
}
.feature-strip--sand .feature-strip__text p { color: var(--text); }
.feature-strip__text ul {
margin: 12px 0 24px 0;
display: flex; flex-direction: column; gap: 10px;
}
.feature-strip__text ul li {
font-size: .95rem; color: rgba(255,255,255,.82);
padding-left: 20px; position: relative; line-height: 1.55;
}
.feature-strip--sand .feature-strip__text ul li { color: var(--text); }
.feature-strip__text ul li::before {
content: '▸';
position: absolute; left: 0;
color: var(--coral-light);
}
.feature-strip__text ul li strong { color: var(--white); }
.feature-strip--sand .feature-strip__text ul li strong { color: var(--ocean); }
.feature-strip__visual {
background: rgba(255,255,255,.08);
border-radius: var(--r-lg);
padding: 36px 32px;
border: 1.5px solid rgba(255,255,255,.12);
}
.feature-strip--sand .feature-strip__visual {
background: var(--white);
border-color: var(--sand-dark);
box-shadow: var(--shadow-md);
}
.feature-strip__visual-title {
font-family: var(--font-display);
font-size: 1.1rem; text-transform: uppercase;
color: var(--coral-light); letter-spacing: .5px;
margin-bottom: 20px;
}
.feature-strip--sand .feature-strip__visual-title { color: var(--coral); }
.share-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.share-card {
background: rgba(255,255,255,.1);
border: 1px solid rgba(255,255,255,.15);
border-radius: var(--r-md);
padding: 16px; text-align: center;
}
.feature-strip--sand .share-card {
background: var(--sand);
border-color: var(--sand-dark);
}
.share-card__name {
font-family: var(--font-display);
font-size: .88rem; color: var(--white);
text-transform: uppercase; letter-spacing: .4px;
}
.feature-strip--sand .share-card__name { color: var(--ocean); }
.share-card__desc { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.feature-strip--sand .share-card__desc { color: var(--text-muted); }
/* Easter badge */
.easter-badge {
display: inline-flex; align-items: center; gap: 10px;
background: rgba(255,255,255,.1);
border: 1.5px solid rgba(255,255,255,.2);
border-radius: var(--r-pill);
padding: 12px 24px;
margin-bottom: 24px;
}
.easter-badge span {
font-family: var(--font-display);
font-size: .85rem; letter-spacing: 1px;
text-transform: uppercase; color: rgba(255,255,255,.9);
}
.no-surcharge {
margin-top: 20px;
background: var(--coral);
border-radius: var(--r-md);
padding: 20px 24px;
text-align: center;
}
.no-surcharge p {
font-family: var(--font-display);
font-size: 1rem; text-transform: uppercase;
color: var(--white) !important;
letter-spacing: .5px; margin: 0 !important;
}
.no-surcharge .big { font-size: 1.4rem; display: block; }
/* ==========================================================================
TAGLINE BANNER
========================================================================== */
.tagline-section {
text-align: center;
padding: 60px 24px;
background: var(--ocean);
}
.tagline {
font-family: var(--font-display);
font-size: clamp(1.5rem, 4vw, 2.8rem);
color: var(--white); text-transform: uppercase;
letter-spacing: 2px; line-height: 1.2;
}
.tagline span { color: var(--coral-light); }
/* ==========================================================================
HOURS
========================================================================== */
.hours-section { text-align: center; padding: 56px 24px; }
.hours-section .heading-lg { margin-bottom: 32px; }
.hours-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px; max-width: 780px; margin: 0 auto;
}
.hours-item {
background: var(--white);
border-radius: var(--r-md);
padding: 14px 12px;
box-shadow: var(--shadow-sm);
border-top: 3px solid var(--coral);
}
.hours-item__day {
font-family: var(--font-display);
font-size: .78rem; color: var(--ocean);
text-transform: uppercase; letter-spacing: .5px;
}
.hours-item__time {
font-size: .88rem; color: var(--text-muted);
margin-top: 3px; font-weight: 500;
}
/* ==========================================================================
NEWSLETTER
========================================================================== */
.newsletter-section {
background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
padding: 64px 24px; text-align: center;
}
.newsletter-section .heading-lg { color: var(--white); margin-bottom: 12px; }
.newsletter-text {
font-size: 1.05rem; color: rgba(255,255,255,.8);
max-width: 480px; margin: 0 auto 28px; line-height: 1.65;
}
.newsletter-form {
display: flex; gap: 12px; max-width: 480px;
margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input[type="email"] {
flex: 1; min-width: 240px;
padding: 15px 22px;
border: 2px solid rgba(255,255,255,.25);
border-radius: var(--r-pill);
background: rgba(255,255,255,.1);
color: var(--white); font-size: .95rem;
outline: none; transition: border-color .2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,.6); }
.newsletter-form button {
padding: 15px 32px;
background: var(--coral); color: var(--white);
border: none; border-radius: var(--r-pill);
font-family: var(--font-display); font-size: .9rem;
cursor: pointer; text-transform: uppercase;
letter-spacing: .5px;
transition: background .2s, transform .15s;
}
.newsletter-form button:hover { background: var(--coral-dark); transform: translateY(-1px); }
/* ==========================================================================
FOOTER
========================================================================== */
.site-footer {
background: var(--teal);
color: rgba(255,255,255,.8);
padding: 56px 24px 32px;
}
.footer-inner {
max-width: var(--max-w); margin: 0 auto;
display: grid;
grid-template-columns: 1.4fr 1fr 1fr;
gap: 40px;
}
.footer-brand { }
.footer-brand .logo-svg { width: 160px; margin-bottom: 16px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.18)); }
.footer-brand p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.6); max-width: 260px; }
.footer-col h4 {
font-family: var(--font-display);
font-size: .85rem; color: var(--coral-light);
text-transform: uppercase; letter-spacing: 1px;
margin-bottom: 14px;
}
.footer-col p, .footer-col a {
font-size: .88rem; line-height: 1.8;
color: rgba(255,255,255,.7);
}
.footer-col a:hover { color: var(--coral-light); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
display: flex; align-items: center; justify-content: center;
width: 38px; height: 38px; border-radius: 50%;
background: rgba(255,255,255,.1);
transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--coral); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom {
max-width: var(--max-w); margin: 36px auto 0;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,.12);
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 8px;
font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--coral-light); }
/* ==========================================================================
PAGE HERO (inner pages)
========================================================================== */
.page-hero {
text-align: center;
padding: 60px 24px 44px;
}
.page-hero .heading-xl { margin-bottom: 14px; }
.page-hero .subheading { margin: 0 auto; text-align: center; }
/* Full-width hero image */
.hero-banner-wrap {
padding: 0 24px;
max-width: var(--max-w-wide);
margin: 0 auto 48px;
}
.hero-banner {
width: 100%; height: 460px;
object-fit: cover; object-position: center 55%;
border-radius: var(--r-lg);
box-shadow: var(--shadow-lg);
display: block;
}
/* ==========================================================================
ABOUT PAGE
========================================================================== */
.about-content {
max-width: 860px; margin: 0 auto;
padding: 0 24px 64px;
background: var(--sand);
display: grid; gap: 0;
}
.about-block {
padding: 48px 0;
border-bottom: 1px solid var(--sand-dark);
}
.about-block:last-child { border-bottom: none; }
.about-block .section-label { margin-bottom: 10px; }
.about-block h2 {
font-family: var(--font-display);
font-size: clamp(1.5rem, 3vw, 2rem);
color: var(--ocean); text-transform: uppercase;
margin-bottom: 20px; line-height: 1.15;
}
.about-block p {
font-size: 1.05rem; line-height: 1.8;
color: var(--text); margin-bottom: 14px;
}
.about-block p:last-child { margin-bottom: 0; }
/* Surcharge video embed — About page inline */
.surcharge-video {
margin: 24px 0;
border-radius: var(--r-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
}
.surcharge-video video {
width: 100%;
height: auto;
display: block;
}
/* Surcharge video — Homepage full-width section */
.surcharge-video-section {
background: var(--sand);
padding: 0 24px 56px;
}
.surcharge-video-inner {
max-width: var(--max-w-wide);
margin: 0 auto;
border-radius: var(--r-lg);
overflow: hidden;
box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,.12));
}
.surcharge-video-inner video {
width: 100%;
height: auto;
display: block;
}
/* Logo divider */
.logo-divider {
text-align: center;
padding: 20px 0 8px;
border-bottom: 1px solid var(--sand-dark);
}
.logo-divider__img {
width: 140px;
height: auto;
opacity: .55;
transition: opacity .3s;
}
.logo-divider__img:hover { opacity: .85; }
/* Lobster menu list */
.lobster-list {
display: grid; gap: 12px;
margin: 20px 0 28px;
}
.lobster-item {
background: var(--white);
border-radius: var(--r-md);
padding: 16px 20px;
display: flex; align-items: flex-start;
justify-content: space-between; gap: 16px;
box-shadow: var(--shadow-sm);
border-left: 4px solid var(--ocean);
}
.lobster-item__name {
font-family: var(--font-display);
font-size: .95rem; color: var(--ocean);
text-transform: uppercase; margin-bottom: 4px;
}
.lobster-item__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.lobster-item__price {
font-family: var(--font-display);
font-size: 1.1rem; color: var(--coral);
white-space: nowrap; font-weight: bold;
flex-shrink: 0;
}
/* Info cards */
.info-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px; max-width: var(--max-w);
margin: 0 auto; padding: 0 24px 72px;
}
.info-card {
background: var(--white);
border-radius: var(--r-lg); padding: 32px 24px;
box-shadow: var(--shadow-md); text-align: center;
border-top: 4px solid var(--coral);
transition: transform .2s, box-shadow .2s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.info-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.info-card__title {
font-family: var(--font-display);
font-size: 1rem; color: var(--ocean);
text-transform: uppercase; margin-bottom: 8px;
}
.info-card__text { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }
.info-card__text a { color: var(--coral); }
/* ==========================================================================
MENU PAGE
========================================================================== */
.menu-section {
max-width: var(--max-w-wide);
margin: 0 auto; padding: 0 24px 52px;
}
.menu-board-title {
font-family: var(--font-display);
font-size: clamp(1.7rem, 4vw, 2.6rem);
color: var(--ocean); text-transform: uppercase;
text-align: center; letter-spacing: 2px;
margin-bottom: 28px; line-height: 1.15;
}
.menu-board-title::after {
content: ''; display: block;
width: 72px; height: 4px;
background: var(--coral); border-radius: 2px;
margin: 12px auto 0;
}
.menu-divider { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px; }
.menu-divider__line {
border: none; height: 2px;
background: linear-gradient(90deg, transparent, var(--sand-dark) 20%, var(--sand-dark) 80%, transparent);
}
.menu-image-wrap { text-align: center; }
.menu-image-wrap img {
border-radius: var(--r-lg); box-shadow: var(--shadow-md);
margin: 0 auto; max-width: 100%;
}
.menu-order-cta { text-align: center; padding: 52px 24px; }
/* ==========================================================================
FORMS
========================================================================== */
.form-section { max-width: 720px; margin: 0 auto; padding: 0 24px 72px; background: var(--sand); }
.form-intro { font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
font-family: var(--font-display); font-size: .78rem;
color: var(--ocean); text-transform: uppercase;
letter-spacing: .5px; margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 13px 16px;
border: 2px solid var(--sand-dark);
border-radius: var(--r-sm);
background: var(--white); color: var(--text);
font-size: .95rem; transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ocean); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] { padding: 10px; border-style: dashed; cursor: pointer; }
.form-submit { margin-top: 28px; text-align: center; grid-column: 1 / -1; }
.shift-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
.shift-grid label {
display: flex; align-items: center; gap: 6px;
font-family: var(--font-body); font-size: .85rem;
font-weight: 400; text-transform: none; color: var(--text); cursor: pointer;
}
.shift-grid input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--coral); }
/* ==========================================================================
CONTACT
========================================================================== */
.contact-grid {
display: grid; grid-template-columns: 1fr 1.3fr;
gap: 52px; max-width: var(--max-w);
margin: 0 auto; padding: 0 24px 72px;
background: var(--sand);
}
.contact-info h3 {
font-family: var(--font-display); font-size: 1rem;
color: var(--ocean); text-transform: uppercase;
margin-bottom: 8px; margin-top: 28px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: .95rem; color: var(--text); line-height: 1.75; }
.contact-info a { color: var(--coral); }
.contact-info a:hover { color: var(--coral-dark); }
.map-placeholder {
width: 100%; height: 220px;
background: var(--sand-dark); border-radius: var(--r-md);
display: flex; align-items: center; justify-content: center;
color: var(--text-muted); font-size: .9rem;
margin-top: 28px; overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; border-radius: var(--r-md); }
/* ==========================================================================
BACK-TO-TOP BUTTON
========================================================================== */
.back-to-top {
position: fixed; bottom: 28px; right: 28px;
width: 46px; height: 46px;
background: var(--coral); color: var(--white);
border: none; border-radius: 50%;
cursor: pointer; z-index: 500;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 4px 18px rgba(224,96,74,.4);
opacity: 0; transform: translateY(12px);
transition: opacity .3s, transform .3s, background .2s;
pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--coral-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; fill: var(--white); }
/* ==========================================================================
ANIMATIONS
========================================================================== */
@media (prefers-reduced-motion: no-preference) {
.fade-in {
opacity: 0; transform: translateY(22px);
transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
.fade-in { opacity: 1; transform: none; }
html { scroll-behavior: auto; }
}
/* ==========================================================================
RESPONSIVE
========================================================================== */
@media (max-width: 1024px) {
.intro-inner { grid-template-columns: 1fr; gap: 40px; }
.feature-strip__inner { grid-template-columns: 1fr; gap: 36px; }
.feature-strip__inner--reverse { direction: ltr; }
.footer-inner { grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
.nav-toggle { display: flex; flex-direction: column; justify-content: center; margin-left: auto; }
.nav-pill { padding: 10px 18px; justify-content: space-between; position: relative; }
.nav-links {
display: none; position: absolute;
top: calc(100% + 4px); left: 0; right: 0;
background: var(--coral);
border-radius: 0 0 18px 18px;
padding: 12px; flex-direction: column; gap: 2px;
box-shadow: 0 12px 32px rgba(224,96,74,.3);
}
.nav-links.open { display: flex; }
.nav-links a { display: block; text-align: center; padding: 12px 16px; font-size: .88rem; }
.cta-grid { grid-template-columns: 1fr; max-width: 400px; }
.venue-hero-img { height: 300px; }
.area-gallery__inner { grid-template-columns: 1fr; }
.area-gallery__item img { height: 210px; }
.share-cards { grid-template-columns: 1fr; }
.hours-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr; }
.form-grid { grid-template-columns: 1fr; }
.footer-inner { grid-template-columns: 1fr; text-align: center; }
.footer-social { justify-content: center; }
.footer-bottom { justify-content: center; }
.logo-svg { width: 160px; }
.hero-banner { height: 260px; }
.back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}
@media (max-width: 480px) {
.hours-grid { grid-template-columns: 1fr; }
.section { padding: 48px 16px; }
}
/* ==========================================================================
FORM SUCCESS / ERROR STATES
========================================================================== */
.form-success {
text-align: center;
padding: 48px 24px;
background: var(--white);
border-radius: var(--r-lg);
box-shadow: var(--shadow-md);
border-top: 4px solid #2ecc71;
}
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
font-family: var(--font-display);
font-size: 1.6rem; color: var(--ocean);
text-transform: uppercase; margin-bottom: 10px;
}
.form-success p { font-size: 1rem; color: var(--text-muted); }
.form-error {
margin-top: 16px;
padding: 14px 18px;
background: #fff0ee;
border: 1.5px solid var(--coral);
border-radius: var(--r-sm);
color: var(--coral-dark);
font-size: .9rem;
text-align: center;
}
/* ==========================================================================
FULL-HEIGHT HERO (New Homepage)
========================================================================== */
.site-nav--hero {
position: absolute;
top: 0; left: 0; right: 0;
z-index: 200;
background: transparent;
}
.site-nav--hero .nav-pill {
background: rgba(224, 96, 74, 0.88);
backdrop-filter: blur(6px);
}
.hero-full {
position: relative;
height: 100vh;
min-height: 800px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-full__bg {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover;
object-position: center 65%;
z-index: 0;
}
.hero-full__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
160deg,
rgba(30, 95, 168, 0.72) 0%,
rgba(20, 66, 74, 0.65) 60%,
rgba(224, 96, 74, 0.45) 100%
);
z-index: 1;
}
.hero-full__content {
position: relative;
z-index: 2;
text-align: center;
padding: 0 24px;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}
.hero-full__logo {
width: 200px;
height: auto;
filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.hero-full__tagline {
font-family: var(--font-display);
font-size: 1rem;
letter-spacing: 4px;
color: rgba(255,255,255,0.92);
text-transform: uppercase;
}
.hero-full__sub {
font-size: clamp(1.2rem, 2.5vw, 1.7rem);
color: rgba(255,255,255,0.90);
font-style: italic;
font-weight: 300;
margin-top: 4px;
}
.hero-full__btns {
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
margin-top: 16px;
}
.hero-full__btns .btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 13px 28px;
font-size: 1rem;
}
.btn--outline-white {
background: transparent;
border: 2px solid rgba(255,255,255,0.85);
color: #fff;
border-radius: var(--r-pill);
font-family: var(--font-display);
font-size: 1rem;
padding: 12px 28px;
transition: background .2s, color .2s;
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn--outline-white:hover {
background: rgba(255,255,255,0.15);
}
.hero-full__scroll {
position: absolute;
bottom: 28px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
color: rgba(255,255,255,0.7);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
}
/* ==========================================================================
TALES FROM THE DEEP — two-column section
========================================================================== */
.tales-section {
padding: 90px 24px;
background: var(--sand);
}
.tales-inner {
max-width: var(--max-w);
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: start;
}
.tales-photo-card {
border-radius: var(--r-lg);
overflow: hidden;
box-shadow:
0 0 0 6px rgba(224,96,74,0.15),
0 0 0 14px rgba(30,95,168,0.08),
var(--shadow-lg);
transition: transform .4s ease, box-shadow .4s ease;
}
.tales-photo-card:hover {
transform: translateY(-6px);
box-shadow:
0 0 0 6px rgba(224,96,74,0.25),
0 0 0 14px rgba(30,95,168,0.12),
var(--shadow-lg);
}
.tales-photo-card img {
width: 100%;
height: 680px;
object-fit: cover;
display: block;
}
.tales-heading {
font-family: var(--font-display);
font-size: clamp(1.8rem, 3vw, 2.4rem);
color: var(--ocean);
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 8px;
}
.tales-rule {
width: 52px;
height: 4px;
background: var(--coral);
border-radius: 2px;
margin: 14px 0 18px;
}
.tales-intro {
font-size: 1rem;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 32px;
}
/* Feature items */
.feature-list {
display: flex;
flex-direction: column;
gap: 24px;
}
.feature-item {
display: flex;
align-items: flex-start;
gap: 18px;
}
.feature-icon {
flex-shrink: 0;
width: 50px; height: 50px;
background: rgba(30, 95, 168, 0.10);
border-radius: var(--r-md);
display: flex;
align-items: center;
justify-content: center;
color: var(--ocean);
}
.feature-icon--coral {
background: rgba(224, 96, 74, 0.10);
color: var(--coral);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-text strong {
display: block;
font-family: var(--font-display);
font-size: 1.05rem;
color: var(--teal);
margin-bottom: 4px;
}
.feature-text p {
font-size: .92rem;
color: var(--text-muted);
line-height: 1.6;
}
/* ==========================================================================
CTA BAND — coral ocean gradient
========================================================================== */
.cta-band {
background: linear-gradient(135deg, var(--ocean) 0%, var(--teal) 100%);
padding: 80px 24px;
text-align: center;
}
.cta-band__inner {
max-width: 700px;
margin: 0 auto;
}
.cta-band__heading {
font-family: var(--font-display);
font-size: clamp(1.8rem, 3.5vw, 2.6rem);
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 14px;
}
.cta-band__sub {
font-size: 1.05rem;
color: rgba(255,255,255,0.85);
line-height: 1.6;
margin-bottom: 32px;
}
.cta-band__btns {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.btn--white-coral {
background: var(--coral);
color: #fff;
border: 2px solid var(--coral);
border-radius: var(--r-pill);
font-family: var(--font-display);
font-size: 1rem;
padding: 13px 30px;
transition: background .2s, transform .15s;
display: inline-block;
}
.btn--white-coral:hover {
background: var(--coral-dark);
border-color: var(--coral-dark);
transform: translateY(-2px);
}
/* Footer quick links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
color: rgba(255,255,255,0.75);
font-size: .9rem;
transition: color .2s;
}
.footer-links a:hover { color: var(--coral-light); }
/* ==========================================================================
RESPONSIVE — Tales section
========================================================================== */
@media (max-width: 860px) {
.tales-inner {
grid-template-columns: 1fr;
gap: 40px;
}
.tales-photo-card img { height: 360px; }
.hero-full__btns { flex-direction: column; align-items: center; }
}
/* ==========================================================================
TALES QUICK-LINK CARDS ROW
========================================================================== */
.tales-cards {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 24px 80px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.tales-card {
background: var(--white);
border: 2px solid var(--sand-dark);
border-radius: var(--r-md);
padding: 24px 22px;
display: flex;
flex-direction: column;
gap: 8px;
transition: border-color .2s, transform .2s, box-shadow .2s;
position: relative;
}
.tales-card:hover {
border-color: var(--ocean);
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}
.tales-card--coral:hover {
border-color: var(--coral);
}
.tales-card__icon {
width: 44px; height: 44px;
background: rgba(30,95,168,0.10);
border-radius: var(--r-sm);
display: flex; align-items: center; justify-content: center;
color: var(--ocean);
margin-bottom: 4px;
}
.tales-card--coral .tales-card__icon {
background: rgba(224,96,74,0.10);
color: var(--coral);
}
.tales-card__icon svg { width: 22px; height: 22px; }
.tales-card strong {
font-family: var(--font-display);
font-size: 1rem;
color: var(--teal);
}
.tales-card p {
font-size: .88rem;
color: var(--text-muted);
line-height: 1.5;
flex: 1;
}
.tales-card__arrow {
font-size: 1.1rem;
color: var(--ocean);
align-self: flex-end;
transition: transform .2s;
}
.tales-card--coral .tales-card__arrow { color: var(--coral); }
.tales-card:hover .tales-card__arrow { transform: translateX(4px); }
@media (max-width: 720px) {
.tales-cards { grid-template-columns: 1fr; }
}
/* ==========================================================================
UNIFIED FEATURE CARDS (replaces separate feature-list + tales-cards)
========================================================================== */
.unified-cards {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 4px;
}
.unified-card {
display: flex;
align-items: center;
gap: 16px;
background: var(--white);
border: 2px solid var(--sand-dark);
border-radius: var(--r-md);
padding: 16px 18px;
transition: border-color .2s, transform .2s, box-shadow .2s;
text-decoration: none;
}
.unified-card:hover {
border-color: var(--ocean);
transform: translateX(4px);
box-shadow: var(--shadow-sm);
}
.unified-card--coral:hover {
border-color: var(--coral);
}
.unified-card__icon {
flex-shrink: 0;
width: 44px; height: 44px;
background: rgba(30,95,168,0.09);
border-radius: var(--r-sm);
display: flex; align-items: center; justify-content: center;
color: var(--ocean);
}
.unified-card--coral .unified-card__icon {
background: rgba(224,96,74,0.09);
color: var(--coral);
}
.unified-card__icon svg { width: 22px; height: 22px; }
.unified-card__text {
flex: 1;
}
.unified-card__text strong {
display: block;
font-family: var(--font-display);
font-size: .98rem;
color: var(--teal);
margin-bottom: 2px;
}
.unified-card__text p {
font-size: .85rem;
color: var(--text-muted);
line-height: 1.5;
margin: 0;
}
.unified-card__arrow {
flex-shrink: 0;
font-size: 1.1rem;
color: var(--ocean);
transition: transform .2s;
}
.unified-card--coral .unified-card__arrow { color: var(--coral); }
.unified-card:hover .unified-card__arrow { transform: translateX(5px); }
/* ==========================================================================
ATTRACTIONS SECTION — "Fremantle's Best Kept Secret" banner + photo grid
==========================================================================[REDACTED]