/* ======================================================
   ROCK FISH & CHIPS - Main Stylesheet
   Colors derived from the restaurant's signage:
   Navy #1B3664 | Red #C62028 | Gold #D4A84B | White
   ====================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #1B3664;
    --navy-dark: #122647;
    --red: #C62028;
    --red-dark: #A41B22;
    --gold: #D4A84B;
    --gold-light: #E8C876;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --warm-gray: #F0EDE8;
    --dark: #0E0E0E;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;

    --font-display: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;

    --nav-height: 80px;
    --section-padding: 100px 0;
    --container-width: 1200px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.25);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.sidebar-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--navy);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--navy);
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 680px;
}

/* ---------- Section Utilities ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
    border-radius: 2px;
}

/* ---------- Diamond Divider ---------- */
.diamond-divider {
    height: 24px;
    position: relative;
    overflow: hidden;
    background: var(--gold);
}

.diamond-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background:
        linear-gradient(135deg, var(--red) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(225deg, var(--red) 33.33%, transparent 33.33%) 0 0;
    background-size: 24px 12px;
    background-repeat: repeat-x;
}

.diamond-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background:
        linear-gradient(315deg, var(--navy) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(45deg, var(--navy) 33.33%, transparent 33.33%) 0 0;
    background-size: 24px 12px;
    background-repeat: repeat-x;
}

.diamond-divider-thin {
    height: 16px;
    position: relative;
    overflow: hidden;
    background: var(--gold);
}

.diamond-divider-thin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background:
        linear-gradient(135deg, var(--red) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(225deg, var(--red) 33.33%, transparent 33.33%) 0 0;
    background-size: 16px 8px;
    background-repeat: repeat-x;
}

.diamond-divider-thin::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background:
        linear-gradient(315deg, var(--navy) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(45deg, var(--navy) 33.33%, transparent 33.33%) 0 0;
    background-size: 16px 8px;
    background-repeat: repeat-x;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    display: flex;
    align-items: center;
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(27, 54, 100, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-icon svg {
    width: 28px;
    height: 28px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.15;
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a.btn-primary::after {
    display: none;
}

.nav-links .btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
    gap: 6px;
}

.nav-links .btn-primary svg {
    width: 16px;
    height: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    margin: 3px 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================
   MOBILE SIDEBAR
   ============================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--navy-dark);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-header .sidebar-brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sidebar-header .sidebar-brand span {
    color: var(--gold);
}

.sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.sidebar-close:hover {
    background: rgba(255,255,255,0.15);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border-left-color: var(--gold);
}

.sidebar-nav a svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    flex-shrink: 0;
}

.sidebar-nav a:hover svg {
    opacity: 1;
}

.sidebar-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
}

.sidebar-menu-btn:hover {
    background: var(--red-dark);
}

.sidebar-contact {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.sidebar-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-dark);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(14, 14, 14, 0.55) 0%,
            rgba(14, 14, 14, 0.35) 40%,
            rgba(14, 14, 14, 0.55) 100%
        );
}

/* Hero Logo Recreation */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    width: 90%;
    padding-top: 40px;
}

.hero-logo-card {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-xl);
}

/* Top blue band */
.logo-top-band {
    background: var(--navy);
    padding: 24px 32px 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-bottom: 3px solid var(--gold);
}

.logo-shark {
    flex-shrink: 0;
}

.logo-rock {
    flex-shrink: 0;
    opacity: 0.9;
}

.logo-flag {
    flex-shrink: 0;
    position: relative;
}

.logo-since {
    position: absolute;
    top: 8px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Red band */
.logo-main-band {
    background: var(--red);
    padding: 20px 32px;
    position: relative;
}

.logo-main-band h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.2rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo-main-band .logo-subtitle {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.logo-fish-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
}

/* Info line */
.logo-info-band {
    background: var(--white);
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.logo-info-band span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.04em;
}

.logo-info-band .dot {
    width: 6px;
    height: 6px;
    background: var(--navy);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Diamond border inside logo card */
.logo-diamond-strip {
    height: 16px;
    position: relative;
    overflow: hidden;
    background: var(--gold);
}

.logo-diamond-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background:
        linear-gradient(135deg, var(--red) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(225deg, var(--red) 33.33%, transparent 33.33%) 0 0;
    background-size: 16px 8px;
    background-repeat: repeat-x;
}

.logo-diamond-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background:
        linear-gradient(315deg, var(--navy) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(45deg, var(--navy) 33.33%, transparent 33.33%) 0 0;
    background-size: 16px 8px;
    background-repeat: repeat-x;
}

/* Hero CTA Buttons */
.hero-buttons {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 32, 40, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll .scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .since-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.about-text h2 {
    margin-bottom: 24px;
    line-height: 1.15;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.about-highlight-item .icon {
    width: 40px;
    height: 40px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-highlight-item .icon svg {
    width: 20px;
    height: 20px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-clip {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-clip img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.about-image:hover .about-image-clip img {
    transform: scale(1.03);
}

.about-image .image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border: 4px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.gallery-slide .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    color: var(--navy);
}

.gallery-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
    left: 16px;
}

.gallery-btn.next {
    right: 16px;
}

.gallery-btn svg {
    width: 22px;
    height: 22px;
}

.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.gallery-dot.active {
    opacity: 1;
    background: var(--red);
    transform: scale(1.2);
}

/* ============================
   MENU CTA SECTION
   ============================ */
.menu-cta {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 75, 0.05);
    border-radius: 50%;
}

.menu-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(198, 32, 40, 0.06);
    border-radius: 50%;
}

.menu-cta .container {
    position: relative;
    z-index: 1;
}

.menu-cta h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.menu-cta .accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
    border-radius: 3px;
}

.menu-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.menu-cta .btn-primary {
    font-size: 1.1rem;
    padding: 16px 44px;
}

.menu-cta .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(198, 32, 40, 0.4);
}

/* ============================
   OPENING HOURS SECTION
   ============================ */
.hours {
    padding: 120px 0;
    background: var(--cream);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hours-card-header {
    background: var(--navy);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hours-card-header svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.hours-card-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.hours-list {
    padding: 8px 0;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background var(--transition);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background: rgba(212, 168, 75, 0.04);
}

.hours-item.today {
    background: rgba(212, 168, 75, 0.08);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.hours-item.today .day {
    color: var(--red);
}

.hours-item .time {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.hours-item.today .time {
    color: var(--red);
    font-weight: 600;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.hours-status.open {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.hours-status.closed {
    background: rgba(198, 32, 40, 0.1);
    color: var(--red);
}

.hours-status .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hours-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hours-info-card .icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hours-info-card .icon svg {
    width: 24px;
    height: 24px;
}

.hours-info-card h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 600;
}

.hours-info-card .info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.hours-info-card a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}

.hours-info-card a:hover {
    color: var(--red);
}

/* ============================
   LOCATION SECTION
   ============================ */
.location {
    padding: 120px 0 0;
    background: var(--white);
}

.location .section-header {
    margin-bottom: 48px;
}

.location-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: saturate(0.85) contrast(1.05);
    transition: filter var(--transition);
}

.location-map:hover {
    filter: saturate(1) contrast(1);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-brand .footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.6s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Hero entrance animation */
.hero-content {
    animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-buttons {
    animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.hero-scroll {
    animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --nav-height: 70px;
    }

    .about-grid {
        gap: 40px;
    }

    .hours-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: 92%;
        padding-top: 20px;
    }

    .logo-top-band {
        padding: 18px 20px 14px;
        gap: 12px;
    }

    .logo-top-band .logo-shark {
        width: 56px;
        height: 35px;
    }

    .logo-top-band .logo-rock {
        width: 84px;
        height: 38px;
    }

    .logo-top-band .logo-flag {
        width: 39px;
        height: 26px;
    }

    .logo-main-band {
        padding: 16px 20px;
    }

    .logo-main-band h1 {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .logo-info-band {
        padding: 10px 16px;
        gap: 6px;
    }

    .logo-info-band span {
        font-size: 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* About */
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image {
        order: -1;
    }

    .about-image-clip img {
        height: 300px;
    }

    .about-text .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery {
        padding: 80px 0;
    }

    .gallery-slide img {
        height: 300px;
    }

    .gallery-btn {
        width: 38px;
        height: 38px;
    }

    .gallery-btn.prev {
        left: 10px;
    }

    .gallery-btn.next {
        right: 10px;
    }

    /* Menu CTA */
    .menu-cta {
        padding: 80px 0;
    }

    /* Hours */
    .hours {
        padding: 80px 0;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hours-item {
        padding: 12px 24px;
    }

    /* Location */
    .location {
        padding: 80px 0 0;
    }

    .location-map {
        height: 320px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .logo-top-band {
        gap: 6px;
        padding: 14px 12px 10px;
    }

    .logo-top-band .logo-shark {
        width: 44px;
        height: 28px;
    }

    .logo-top-band .logo-rock {
        width: 66px;
        height: 30px;
    }

    .logo-top-band .logo-flag {
        width: 30px;
        height: 21px;
    }

    .logo-main-band h1 {
        font-size: 1.5rem;
    }

    .logo-main-band .logo-subtitle {
        font-size: 0.7rem;
    }

    .logo-info-band span {
        font-size: 0.62rem;
    }

    .logo-fish-icon {
        display: none;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slide {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}
