/* ===================================
   Crazy Joe's - Jack's Style Clone
   Dark theme, gold accents, bold typography
   =================================== */

:root {
    --color-dark: #1a1a1a;
    --color-darker: #111111;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gold: #D4A84B;
    --color-red: #E85A4F;
    --color-orange: #E8732C;
    --color-teal: #4A9D9A;
    --color-gray: #888888;
    --color-gray-light: #f5f5f5;
    --color-text-light: rgba(255,255,255,0.8);

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-dark);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.section-label.red { color: var(--color-red); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-title.gold { color: var(--color-gold); }
.section-title.red { color: var(--color-red); }

/* Buttons */
button {
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background: var(--color-gray-light);
}

.btn-dark {
    background: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-dark:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-dark);
}

.btn-gold:hover {
    background: #c49a3d;
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 180px;
    padding: 8px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-dark);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--color-gray-light);
    color: var(--color-red);
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.logo-img {
    height: 198px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
}

.btn-header {
    padding: 10px 24px;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-header:hover {
    background: var(--color-gray-light);
}

.lang-switch {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.lang-switch svg {
    transition: transform 0.2s;
}

.lang-switch:hover svg,
.lang-switch.active svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--color-white);
    min-width: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.lang-switch:hover .lang-dropdown,
.lang-switch.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.lang-dropdown a:hover {
    background: var(--color-gray-light);
}

.lang-dropdown a.active {
    color: var(--color-red);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    position: relative;
    z-index: 110;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: var(--color-dark);
    padding: 100px 0;
}

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

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hours-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 4px;
}

.hours-list {
    margin: 24px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}

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

.hours-row.closed span:last-child {
    color: var(--color-gray);
}

.hours-note {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.gold-link {
    color: var(--color-gold);
    font-weight: 500;
}

.gold-link:hover {
    text-decoration: underline;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: var(--color-dark);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--color-teal);
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
    line-height: 1.5;
}

.features-headline h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    color: #D97D54;
}

/* ===================================
   Promo Section
   =================================== */
.promo-section {
    background: var(--color-dark);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.promo-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
}

.promo-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    border-top: 1px solid var(--color-gray-light);
    padding-top: 16px;
}

.promo-link svg {
    color: var(--color-red);
}

.promo-link:hover {
    color: var(--color-red);
}

/* ===================================
   Events Section
   =================================== */
.events-section {
    background: var(--color-dark);
    padding: 80px 0;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.event-card {
    background: var(--color-white);
    overflow: hidden;
}

.event-image {
    height: 280px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.event-content {
    padding: 24px;
    background: var(--color-white);
    border: none;
}

.event-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.event-details {
    margin-bottom: 16px;
}

.event-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
}

.event-label {
    font-weight: 600;
    color: var(--color-dark);
}

.event-row span:last-child {
    color: var(--color-gray);
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
    width: 100%;
}

.event-link svg {
    color: var(--color-red);
}

.event-link:hover {
    color: var(--color-red);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.reviews-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/image00017.jpeg') center/cover;
    opacity: 0.15;
}

.reviews-section .container {
    position: relative;
    z-index: 10;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.reviewer {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.stars {
    color: var(--color-gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.review-card p + p {
    margin-top: 16px;
}

.reviews-page {
    padding-top: 160px;
}

.reviews-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===================================
   Social Section
   =================================== */
.social-section {
    background: var(--color-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.social-image {
    overflow: hidden;
}

.social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.social-center {
    position: relative;
}

.social-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.social-overlay h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* ===================================
   Contact Bar
   =================================== */
.contact-bar {
    background: var(--color-white);
    padding: 24px 0;
}

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

.contact-info {
    display: flex;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-dark);
}

.contact-item svg {
    color: var(--color-teal);
}

.contact-buttons {
    display: flex;
    gap: 12px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-gray-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo .logo-img {
    height: 60px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 4px;
    color: var(--color-dark);
}

.social-icon:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.footer-nav h4,
.footer-hours h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-red);
    margin-bottom: 20px;
}

.footer-nav a {
    display: block;
    font-size: 15px;
    color: var(--color-dark);
    padding: 6px 0;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--color-red);
}

.footer-hours-list div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--color-dark);
    padding: 6px 0;
}

.footer-bottom {
    background: var(--color-dark);
    padding: 20px 0;
}

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

.footer-bottom span {
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ===================================
   WhatsApp Button
   =================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #25D366;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

/* Position Zenchef widget above WhatsApp button */
iframe[class*="ZC_sdk__zc-iframe"] {
    bottom: 80px !important;
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* ===================================
   Events Page
   =================================== */
.events-page-section {
    padding: 45px 24px;
}

.events-empty-text {
    font-size: 18px;
    color: var(--color-text-light);
}

.events-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 30px;
}

.events-content-section {
    padding: 45px 0;
    background: var(--color-darker);
}

.events-content-layout {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.events-content-heading {
    flex: 0 0 35%;
}

.events-content-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--color-white);
}

.events-content-body {
    flex: 1;
}

.events-content-body p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* ===================================
   FAQ Page
   =================================== */
.faq-section {
    padding: 45px 0;
}

.faq-layout {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.faq-main {
    flex: 0 0 65%;
}

.faq-sidebar {
    flex: 0 0 30%;
}

.faq-sidebar h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.faq-accordion {
    background: var(--color-darker);
}

.faq-item-border {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-chevron {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer-inner p {
    padding-top: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   Jobs Page
   =================================== */
.jobs-section {
    padding: 45px 0;
}

.jobs-layout {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.jobs-main {
    flex: 0 0 58%;
}

.jobs-side-image {
    flex: 0 0 35%;
}

.jobs-image-ratio {
    position: relative;
    padding-bottom: 133%; /* 3:4 aspect ratio */
    overflow: hidden;
}

.jobs-image-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jobs-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.jobs-cta {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jobs-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.jobs-cta p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.jobs-email-btn {
    margin-top: 16px;
    margin-bottom: 32px;
}

.jobs-availability {
    padding-top: 32px;
}

.jobs-availability h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.jobs-availability p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .nav-left {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        padding: 24px;
        gap: 0;
        z-index: 100;
    }

    .nav-left.active {
        display: flex;
    }

    .nav-left .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-left .nav-dropdown {
        width: 100%;
    }

    .nav-left .dropdown-menu {
        position: static;
        background: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-left .dropdown-menu a {
        padding: 8px 0;
    }

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

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .logo {
        position: static;
        transform: none;
        z-index: 1;
    }

    .logo-img {
        height: 90px;
    }

    .header-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .promo-image:first-child {
        display: none;
    }

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

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

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

    .social-image {
        display: none;
    }

    .faq-layout {
        flex-direction: column;
    }

    .faq-main {
        flex: 1;
    }

    .faq-sidebar {
        flex: 1;
    }

    .events-content-layout {
        flex-direction: column;
        gap: 24px;
    }

    .events-content-heading {
        flex: 1;
    }

    .jobs-layout {
        flex-direction: column;
    }

    .jobs-main {
        flex: 1;
    }

    .jobs-side-image {
        flex: 1;
        max-width: 400px;
    }

    .contact-bar .container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .about-buttons {
        flex-direction: column;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reviews-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

/* ===================================
   Menu Page Styles
   =================================== */
.menu-page {
    background: var(--color-dark);
}

/* Header solid state for menu page */
.header-solid {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

/* Menu Hero */
.menu-hero {
    position: relative;
    padding: 180px 24px 100px;
    text-align: center;
    overflow: hidden;
}

.menu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.menu-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.menu-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.8) 100%);
}

.menu-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.menu-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.menu-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.menu-intro {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
    font-style: italic;
}

/* Menu Section */
.menu-section {
    background: var(--color-dark);
    padding: 0 0 80px;
}

.menu-service-tabs {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.menu-service-tab {
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.04);
}

.menu-service-tab:hover,
.menu-service-tab.active {
    background: var(--color-red);
    border-color: var(--color-red);
}

.menu-service-panel {
    display: none;
}

.menu-service-panel.active {
    display: block;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

/* Menu Sidebar */
.menu-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.menu-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    border-radius: 4px;
    transition: all 0.2s;
}

.menu-nav-link svg {
    opacity: 0;
    transition: all 0.2s;
    color: var(--color-gold);
}

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

.menu-nav-link:hover svg,
.menu-nav-link.active svg {
    opacity: 1;
}

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

/* Menu Content */
.menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-service-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-service-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.menu-service-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    font-style: italic;
    line-height: 1;
}

.menu-service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 600;
}

.menu-service-intro {
    color: var(--color-text-light);
    line-height: 1.7;
}

.menu-card {
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.item-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

.menu-empty-state {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 40px;
}

.menu-empty-state h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-style: italic;
    margin-bottom: 12px;
}

.menu-empty-state p {
    color: var(--color-text-light);
}

/* Reserve Button (floating) */
.reserve-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--color-teal);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(74, 157, 154, 0.4);
    z-index: 998;
}

.reserve-btn:hover {
    background: #3d8a87;
    transform: translateY(-2px);
}

/* Menu Page Responsive */
@media (max-width: 1024px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .menu-service-tabs {
        margin-bottom: 32px;
    }

    .menu-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .sidebar-title {
        width: 100%;
        margin-bottom: 8px;
    }

    .menu-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 0;
    }

    .menu-nav-link {
        padding: 8px 16px;
        background: rgba(255,255,255,0.05);
        border-radius: 20px;
    }

    .menu-nav-link svg {
        display: none;
    }

    .sidebar-btn {
        width: auto;
    }
}

@media (max-width: 640px) {
    .menu-hero {
        padding: 140px 24px 60px;
    }

    .menu-service-tabs {
        gap: 8px;
    }

    .menu-service-tab {
        width: 100%;
        justify-content: center;
    }

    .menu-service-summary,
    .menu-card {
        padding: 24px;
    }

    .menu-item {
        flex-direction: column;
        gap: 8px;
    }

    .item-price {
        align-self: flex-start;
    }

    .reserve-btn {
        bottom: 80px;
        right: 16px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .whatsapp-btn {
        right: 16px;
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ===================================
   Detail pages (event + news)
   =================================== */

.detail-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
}

.detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    background: #1a1a1a;
    padding: 60px 20px 80px;
}

.detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8a456;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

.detail-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 32px;
    line-height: 1.1;
}

.detail-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
    margin-bottom: 40px;
}

.detail-meta-row {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    color: #fff;
    font-size: 15px;
}

.detail-meta-row strong {
    color: #c8a456;
    min-width: 100px;
}

.detail-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.detail-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .detail-hero {
        height: 35vh;
        min-height: 220px;
    }

    .detail-content {
        padding: 40px 16px 60px;
    }

    .detail-container h1 {
        font-size: 1.8rem;
    }

    .detail-meta-row {
        flex-direction: column;
        gap: 2px;
    }

    .detail-meta-row strong {
        min-width: unset;
    }
}

/* ===================================
   Menu note (orange disclaimer)
   =================================== */
.menu-note {
    margin-top: 16px;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--color-orange);
}

/* ===================================
   Weekly Specials Section
   =================================== */
.specials-section {
    background: var(--color-darker);
    padding: 80px 0;
}

.specials-header {
    text-align: center;
    margin-bottom: 48px;
}

.specials-header .section-label {
    display: block;
    margin-bottom: 8px;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.special-card {
    background: var(--color-white);
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.special-image {
    height: 200px;
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.special-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.special-day {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-red);
    margin-bottom: 8px;
}

.special-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.special-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.special-details-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.special-details {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.special-details li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray);
}

.special-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.special-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: auto;
    padding-top: 12px;
}

.special-footer {
    margin-top: 12px;
    font-size: 13px;
    font-style: italic;
    color: var(--color-gray);
}

.specials-outro {
    max-width: 760px;
    margin: 40px auto 0;
    text-align: center;
    color: var(--color-text-light);
    line-height: 1.8;
}

.specials-cta {
    text-align: center;
    margin-top: 24px;
}

/* ===================================
   Jobs vacancies
   =================================== */
.jobs-vacancies {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.jobs-vacancies > h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
}

.vacancy-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 24px;
}

.vacancy-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.vacancy-heading {
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.vacancy-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.vacancy-requirements {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.vacancy-requirements li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.vacancy-requirements li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.vacancy-apply-text {
    font-weight: 600;
    color: var(--color-white);
}

.vacancy-apply {
    margin-top: 4px;
}

/* ===================================
   Specials / vacancies responsive
   =================================== */
@media (max-width: 1024px) {
    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}
