/* ============================================
   PiDGiN Restaurant - Main Stylesheet
   ============================================ */

/* CSS Variables - Design System */
:root {
    /* Colors - Black and White */
    --bg: #111;
    --bg-alt: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222;
    --text: #fff;
    --text-muted: #999;
    --text-light: #ccc;
    --accent: #fff;
    --accent-hover: #ccc;
    --border: #333;
    --border-light: #444;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;

    /* Typography - Dosis for everything like original */
    --font-heading: 'Dosis', sans-serif;
    --font-body: 'Dosis', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 70px;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7em;
    color: var(--text);
    background-color: var(--bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

h1 { font-size: 50px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 21px; }
h6 { font-size: 20px; }

p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7em;
    margin-bottom: var(--spacing-md);
}

a {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    transition: all 300ms ease;
    cursor: pointer;
    outline: 0;
}

a:hover {
    color: var(--accent);
}

span {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0.02em;
}

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

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    background: var(--text);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    background: var(--text);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    padding: var(--spacing-sm) 0;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-xl);
        transition: var(--transition);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: var(--font-size-xl);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .hamburger {
        background: transparent;
    }

    body.nav-open .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    body.nav-open .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }
}

/* ============================================
   Main Content
   ============================================ */

.content {
    min-height: calc(100vh - var(--nav-height));
    padding-top: var(--nav-height);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-2xl);
}

.container-narrow {
    max-width: 800px;
}

/* Section */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    margin-bottom: var(--spacing-md);
    color: var(--accent);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Background Variants - Alternating Pattern */
.section-white {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    padding: 130px 0 100px 0;
}

/* First section after hero doesn't need extra top padding */
.hero + .section-white,
.hero + .section-parallax {
    padding-top: 100px;
}

/* First section on pages without hero - add padding for nav */
.section-first {
    padding-top: 160px;
}

.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white h5,
.section-white h6 {
    color: #fff;
}

.section-white p {
    color: #ccc;
}

.section-white a {
    color: #fff;
}

.section-white a:hover {
    color: #aaa;
}

.section-white .section-title {
    color: #fff;
}

.section-parallax {
    position: relative;
    background: var(--bg);
    color: #fff;
    padding: 130px 0 100px 0;
    overflow: hidden;
}

.section-parallax .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-parallax .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(23, 22, 24);
    opacity: 0.9;
    z-index: 1;
}

.section-parallax .section-content {
    position: relative;
    z-index: 2;
}

.section-parallax h1,
.section-parallax h2,
.section-parallax h3,
.section-parallax h4,
.section-parallax h5,
.section-parallax h6 {
    color: #fff;
}

.section-parallax p {
    color: #bbb;
}

.section-parallax .section-title {
    color: #fff;
}

/* Disable parallax fixed attachment on mobile */
@media (max-width: 768px) {
    .section-parallax .parallax-bg {
        background-attachment: scroll;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl);
}

.hero-logo {
    max-width: min(450px, 70vw);
    width: 100%;
    margin: 0 auto var(--spacing-xl);
}

.hero-title {
    font-size: var(--font-size-6xl);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: var(--bg);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    border-color: transparent;
}

.btn-ghost:hover {
    background: rgba(201, 162, 39, 0.1);
}

/* Button styles on alternate sections */
.section-white .btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.section-white .btn-primary:hover {
    background: #ccc;
    border-color: #ccc;
    color: #000;
}

.section-white .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.section-white .btn-secondary:hover {
    background: #fff;
    color: #000;
}

.section-white .btn-ghost {
    color: #fff;
}

.section-white .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-base);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-xs);
}

/* ============================================
   Cards
   ============================================ */

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--text-muted);
}

/* ============================================
   Grid Layouts
   ============================================ */

.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Forms
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    color: var(--danger);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

/* Form styles on alternate sections */
.section-white .form-input,
.section-white .form-select,
.section-white .form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.section-white .form-input:focus,
.section-white .form-select:focus,
.section-white .form-textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.section-white .form-label {
    color: #ccc;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
}

.footer-section h3 {
    font-size: var(--font-size-sm);
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-xl) var(--spacing-xl) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
}

.lightbox.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    font-size: var(--font-size-4xl);
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
}

/* ============================================
   Tabs
   ============================================ */

.tabs {
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--spacing-xl);
}

.tab-list {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ============================================
   Utility Classes
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   Loading State
   ============================================ */

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Alert Messages
   ============================================ */

.alert {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-lg);
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

/* ============================================
   Page-Specific: About
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    font-size: var(--font-size-lg);
    color: var(--text-light);
}

.section-white .about-text {
    color: #ccc;
}

.about-text p {
    margin-bottom: var(--spacing-lg);
}

.about-video {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-video iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Page-Specific: Team
   ============================================ */

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.team-member {
    flex: 0 1 250px;
    max-width: 300px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-lg);
    overflow: hidden;
    border: 3px solid var(--accent);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--accent);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Page-Specific: Press
   ============================================ */

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.press-item {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.press-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.press-logo {
    height: 60px;
    margin: 0 auto var(--spacing-lg);
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.press-item:hover .press-logo {
    filter: grayscale(100%) brightness(2);
    opacity: 0.8;
}

.press-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.press-year {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* Michelin Badge */
.michelin-badge {
    display: inline-block;
    margin-bottom: var(--spacing-2xl);
}

.michelin-badge img {
    height: 120px;
    width: auto;
}

/* Michelin Years Grid */
.michelin-years-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin: var(--spacing-2xl) 0;
}

.michelin-year-item {
    text-align: center;
}

.michelin-year-item img {
    height: 140px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.michelin-year-item:hover img {
    transform: scale(1.05);
}

.michelin-year-item p {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .michelin-years-grid {
        gap: var(--spacing-lg);
    }

    .michelin-year-item img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .michelin-years-grid {
        gap: var(--spacing-md);
    }

    .michelin-year-item img {
        height: 80px;
    }

    .michelin-year-item p {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   Page-Specific: Gallery
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-artist-name {
    color: #fff;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.gallery-cta {
    color: #fff;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid #fff;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius);
}

/* ============================================
   Page-Specific: Mural
   ============================================ */

.mural-content {
    max-width: 900px;
    margin: 0 auto;
}

.mural-video {
    margin-bottom: var(--spacing-3xl);
}

.mural-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.mural-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mural-description {
    text-align: left;
}

.mural-description h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.mural-description p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    text-align: justify;
}

.mural-description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Page-Specific: Contact
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info h3 {
    color: var(--accent);
    margin-bottom: var(--spacing-lg);
}

.contact-info p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-muted);
}

.contact-map {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Page-Specific: Gift Cards
   ============================================ */

.giftcard-section {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.giftcard-description {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

.giftcard-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.giftcard-select-wrapper {
    width: 100%;
    max-width: 300px;
}

.giftcard-select-wrapper .form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.giftcard-select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.giftcard-select:focus {
    outline: none;
    border-color: #fff;
}

.giftcard-select option {
    background: #111;
    color: #fff;
}

/* ============================================
   Page-Specific: Reservations
   ============================================ */

.reservations-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tock-widget {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tock-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
}

.tock-reserve-btn .tock-logo {
    height: 24px;
    width: auto;
}

.reservations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.reservation-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.reservation-info-card h4 {
    margin-bottom: var(--spacing-md);
    color: #fff;
}

.reservation-info-card p {
    color: #ccc;
    margin-bottom: var(--spacing-sm);
}

.reservation-card-link {
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.reservation-card-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.reservation-card-link .card-cta {
    display: inline-block;
    margin-top: var(--spacing-md);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 600px) {
    .reservations-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Responsive Typography
   ============================================ */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 { font-size: var(--font-size-4xl); }
    h2 { font-size: var(--font-size-3xl); }
    h3 { font-size: var(--font-size-2xl); }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .container {
        padding: var(--spacing-lg);
    }

    .hero-cta .btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-logo {
        max-width: min(300px, 65vw);
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .hero-cta {
        gap: var(--spacing-sm);
        width: 100%;
    }

    .hero-cta .btn {
        padding: 10px 18px;
        font-size: var(--font-size-xs);
        min-width: 0;
        flex: 1 1 auto;
        max-width: 45%;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-logo {
        max-width: 60vw;
    }

    .hero-cta .btn {
        padding: 8px 14px;
        font-size: 11px;
    }
}
