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

:root {
    --gold: #F5BE32;
    --light-gold: #F3D382;
    /* --dark-bg: #0a0a0a; */
    --dark-bg: #1e1e1e;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --text-light-gray: #8a8a8a;
    --text-off-white: #d9d9d9;
}

body {
    font-family: "DM Sans", sans-serif;
    /* background-color: var(--dark-bg); */
    background-color: #000;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 1325px;
    margin: 0 auto;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Great Vibes', cursive;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--text-gray);
    margin-bottom: 0;
    text-align: center;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 100;
    color: var(--light-gold);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 60px;
}

/* Buttons */
.btn-primary-no-line,
.btn-primary {
    background-color: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 12px 70px 12px 20px;    
    font-family: 'Cormorant SC', serif;
    font-size: 20px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--dark-bg);
}

.btn-primary-no-line {
    padding: 12px 20px;
    border: 1px solid var(--gold);
}

.btn-primary-no-line,
.btn-primary:hover {
    background-color: #f0c040;
    transform: translateY(-2px);
}

.btn-primary-no-line:hover {
    color: var(--gold);
    background-color: transparent;
    border: 1px solid var(--gold);
}

.btn-primary-events {
    background-color: var(--gold);
    color: var(--card-bg);
    border: 2px solid var(--gold);
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-primary-events:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-primary-events-white {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;   
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-primary-events-white:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 38px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.btn-reservation {
    background-color: rgba(110, 104, 104, 0.8);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 70px 12px 12px;
    font-family: 'Cormorant SC', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 6px 0 var(--gold);
}

.btn-reservation::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 51px;
    height: 2px;
    background-color: var(--gold);
}

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

.btn-reservation:hover::after {
    background-color: var(--dark-bg);
}

.skip-to-main {
  position: absolute;
  left: -9999px; 
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-to-main:focus {
  position: static; 
  width: auto;
  height: auto;
  overflow: visible;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background-color: rgba(10, 10, 10, 0.95); */
    background: transparent;
    padding: 20px 0;
    /* background-size: contain; */
}

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

.logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 50px;
    position: relative;
    left: 50px;
}

.nav a {
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Cormorant SC', serif;
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

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

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('images/hero-bg.webp');
    /* background-size: cover; */
    background-position: top;
    background-attachment: fixed;
    padding-top: 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse closest-side, transparent, var(--dark-bg) 100%);
    pointer-events: none;
}

/* .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: radial-gradient(circle, var(--dark-bg) 48%, var(--dark-bg) 100%);
    clip-path: ellipse(80% 100% at 50% 100%);
    pointer-events: none;
} */

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-style: italic;
    font-size: 25px;
    letter-spacing: 0.3em;
    color: var(--text-off-white);
    margin-bottom: 0;
    text-align: center;
}

.hero-title {
    font-size: 60px;
    color: var(--light-gold);
    margin-bottom: 13px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Today's Special Section */
.todays-special {
    padding: 75px 0;
    background-color: var(--dark-bg);
}

.special-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1150px;
    margin: 60px auto;
    box-shadow: 0px 7px 20px 0px #322609;
}

.card {
    background-color: var(--card-bg);
    padding-bottom: 30px;
    transition: transform 0.3s ease;
    /* border: 1px solid rgba(212, 175, 55, 0.1); */
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-image {
    width: 100%;
    height: 300px;
    margin-bottom: 25px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 0 20px;
}

.card h3 {
    font-size: 25px;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card p {
    font-size: 20px;
    color: var(--text-light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.rating {
    margin-bottom: 25px;
}

.rating span {
    color: var(--gold);
    font-size: 40px;
    margin: 0 2px;
}

.btn-order {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 35px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

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

/* Restaurant Image */
.restaurant-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--dark-bg);
}

.restaurant-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Our Specialties Section */
.specialties {
    padding: 120px 0 20px;
    background-color: var(--dark-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
    padding: 10px 23px;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
}

.specialty-items {
    display: flex;
    flex-direction: column;
}

.specialty-item {
    display: grid;
    grid-template-columns: 57% 43%;
    align-items: center;
}

.specialty-item.reverse {
    direction: rtl;
}

.specialty-item.reverse > * {
    direction: ltr;
}

.specialty-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.specialty-content {
    padding: 0 40px;
}

.specialty-content h3 {
    font-size: 32px;
    color: var(--light-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.specialty-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.2;
    margin-bottom: 20px;
}

.specialty-content .price {
    font-size: 28px;    
    color: var(--light-gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* Dining Events Section */
.dining-events {
    padding: 120px 0;
    background-color: var(--dark-bg);
}

.event-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.event-packages {
    display: flex;
    flex-direction: column;
}

.event-package {
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    position: relative;
}

.event-package.reverse {
    direction: rtl;
}

/* .event-package.reverse > * {
    direction: ltr;
} */

.event-package.reverse .event-content {
    left: 0;
    right: auto;
    text-align: left;
}

.event-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 45%, var(--dark-bg) 100%);
    pointer-events: none;
}

.event-package.reverse .event-image::after {
    background: linear-gradient(to left, transparent 45%, var(--dark-bg) 100%);
}

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

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

.event-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    padding: 0 40px;
}

.event-content.reverse {
    left: 0;
    text-align: left;
}

.event-content h3 {
    font-size: 28px;
    color: var(--light-gold);
    margin-bottom: 5px;
}

.event-content p {
    font-size: 20px;
    color: var(--text-off-white);
    line-height: 1.2;
}

.event-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.event-details div {
    direction: ltr !important;
}

.event-details p {
    direction: ltr !important;
    unicode-bidi: embed;
}

.event-price {
    position: relative;
    bottom: 22px;
    font-size: 48px !important;
    color: var(--light-gold) !important;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.event-price-right {
    text-align: right;
}

@media screen and (min-width: 1200px ) {
    .event-details {
        grid-template-columns: 2fr 1fr;
    }

    .event-price-right {
        text-align: left;
    }
}

/* Food Image */
.food-image {
    width: 100%;
    height: 383px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Story Section */
.our-story {
    padding: 120px 0;
    background-color: var(--dark-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.story-images img:first-child {
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text p {
    font-size: 20px;
    color: var(--text-off-white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.business-hours {
    background-color: var(--card-bg);
    padding: 30px;
    margin: 40px 0;
    border-left: 3px solid var(--gold);
}

.business-hours p {
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 10px;
}

.business-hours strong {
    font-size: 16px;
}

/* Footer */
.footer-cta {
    width: 100%;
    height: 700px;
    padding: 100px 0;
    background: radial-gradient(ellipse closest-side, rgba(30, 30, 30, 0.7), var(--dark-bg) 110%), url(images/footer-bg.webp);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.footer-cta h2 {
    font-size: 42px;
    color: var(--light-gold);
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-off-white);
    text-align: center;
    line-height: 1.2;
    opacity: .8;
}

.footer-logo img {
    margin-top: 100px;
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}

.footer-links a {
    color: var(--text-off-white);
    text-decoration: none;
    font-family: 'cormorant SC', serif;
    font-size: 20px;
    transition: color 0.3s ease;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80%;
    height: 2px;
    margin: auto;
    background-color: var(--gold);
}

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

.footer-credit {
    width: 100%;
    height: 80px;
    background-color: var(--dark-bg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .special-cards {
        grid-template-columns: 1fr;
    }

    /* Make filter buttons horizontally scrollable on tablet and smaller */
    .filter-buttons {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 16px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .filter-buttons::-webkit-scrollbar {
        height: 8px;
    }

    .filter-buttons::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.06);
        border-radius: 4px;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
    }

    .specialty-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialty-item.reverse {
        direction: ltr;
    }

    .event-packages {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Tighter container padding for small screens */
    .btn-primary::after,
    .btn-reservation::after {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 12px 0;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
    }

    .logo img {
        height: 56px;
        width: 56px;
    }

    .nav {
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px;
    }

    /* Mobile hamburger toggle styling */
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--gold);
        font-size: 26px;
        cursor: pointer;
        padding: 6px 10px;
        order: 3; /* place on the right */
    }

    /* Ensure reservation button is centered between logo and hamburger */
    .btn-reservation {
        order: 2;
        margin: 0 auto;
        position: relative;
    }

    .logo { order: 1; }

/* Mobile sliding nav panel and overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
    z-index: 998;
}
.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 84vw;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(20,20,20,0.98), var(--dark-bg));
    box-shadow: -20px 0 40px rgba(0,0,0,0.6);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.2,.9,.3,1);
    z-index: 999;
    padding: 28px 20px;
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-inner {
    padding-top: 75px;
}

.mobile-nav-inner a {
    display: block;
    padding: 14px 12px;
    color: var(--text-off-white);
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.mobile-nav-inner a:hover { color: var(--gold); }

/* ensure the nav inside header stays hidden on mobile while panel used */
@media (max-width: 768px) {
    .header .nav { display: none; }
}

    .nav a {
        font-size: 16px;
        padding: 6px 8px;
    }

    .hero {
        padding-top: 80px;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Make CTA buttons smaller to avoid overflow */
    .btn-primary {
        padding: 10px 28px;
        font-size: 16px;
    }

    .btn-secondary {
        padding: 10px 22px;
        font-size: 14px;
    }

    .btn-reservation {
        padding: 10px 24px;
        font-size: 16px;
    }

    /* Scrollable filter buttons (keeps previous behavior but tighter) */
    .filter-buttons {
        gap: 12px;
        overflow-x: auto;
        padding: 0 12px;
        justify-content: flex-start;
        scroll-snap-type: x proximity;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 18px;
        font-size: 14px;
        scroll-snap-align: start;
        border-radius: 6px;
    }

    /* Cards and images scale down */
    .card-image {
        height: 220px;
    }

    .specialty-items .specialty-item {
        min-width: 92%;
        flex: 0 0 92%;
    }

    .specialty-image {
        height: 300px;
    }

    .event-image {
        height: 300px;
    }

    .food-image {
        height: 260px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .footer-logo img {
        margin-top: 40px;
        height: 56px;
        width: 56px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .nav a { font-size: 14px; }

    .hero-title { font-size: 26px; }
    .hero-description { font-size: 14px; }

    .btn-primary { padding: 8px 18px; font-size: 14px; }
    .btn-reservation { padding: 8px 16px; font-size: 14px; }

    .filter-btn { padding: 10px 14px; font-size: 13px; }

    .specialty-items .specialty-item { min-width: 95%; flex: 0 0 95%; }
    .specialty-image { height: 240px; }
    .card-image { height: 180px; }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.specialty-item,
.event-package {
    animation: fadeIn 0.6s ease-out;
}
