/* ==========================================================================
   Sam's HK Restaurant - Premium CSS Styling Sheet
   Aesthetics: Sleek Charcoal Dark Theme, Gold/Bronze Accents, Ruby Highlights
   ========================================================================== */

/* Custom Properties / Design Tokens */
:root {
    --color-bg: #070709;
    --color-surface-bg: #141418;
    --color-card-bg: #0f0f12;
    --color-gold: #d2261f; /* Brand Red from Logo */
    --color-gold-hover: #eb332c; /* Brand Red Hover */
    --color-crimson: #d2261f;
    --color-crimson-hover: #eb332c;
    --color-text-primary: #ffffff;
    --color-text-secondary: #d2261f; /* Accent secondary brand red */
    --color-text-muted: #9fa0a6;
    --color-border: #1f1f24;
    --color-navbar-bg: rgba(7, 7, 9, 0.85);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-gold-glow: 0 4px 20px rgba(210, 38, 31, 0.2);
}

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

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f12;
}
::-webkit-scrollbar-thumb {
    background: #2a2a30;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-weight: 300;
    color: var(--color-text-muted);
}

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

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.btn-block { width: 100%; display: block; }
.align-center { align-items: center; }

/* Structural Sections & Layout Container */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 8px;
    font-weight: 700;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
}

.divider.align-left {
    margin-left: 0;
}

/* Premium Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #121212;
    border: 1px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--color-navbar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-container {
    padding: 0 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
}

.logo-accent {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #0e0e12;
    z-index: 999;
    padding: 100px 40px;
    border-left: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.mobile-link:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.mobile-cta {
    margin-top: 20px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 24px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.4) 0%, rgba(11, 12, 16, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 60px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--color-gold);
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.arrow-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Highlights Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.highlight-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold-glow), var(--shadow-premium);
}

.card-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.highlight-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-gold);
    color: #121212;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* About Section Styles */
.about-section {
    background-color: #08080b;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 480px;
}

.image-stack img {
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    object-fit: cover;
}

.img-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--color-border);
}

.img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 4px solid #08080b;
}

.experience-badge {
    position: absolute;
    bottom: 20%;
    left: -20px;
    background-color: var(--color-gold);
    color: #121212;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.experience-badge .text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-top: 8px;
}

.about-content p {
    margin-top: 24px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    margin-top: 0;
    font-size: 0.9rem;
}

/* Dynamic Menu Grid & Tab Filtering */
.menu-tabs-container {
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: max-content;
    margin: 0 auto;
}

.tab-btn {
    background-color: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    background-color: var(--color-gold);
    color: #121212;
    border-color: var(--color-gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 32px;
    min-height: 400px;
    transition: var(--transition-smooth);
}

.menu-item-card {
    display: flex;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.menu-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold-glow);
}

.menu-item-visual {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    background-color: #222;
}

.menu-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.menu-item-heading h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.menu-item-heading .price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.set-menu-items {
    list-style-type: disc;
    margin-left: 15px;
    padding-left: 0;
    margin-top: 8px;
    margin-bottom: 8px;
}

.set-menu-items li {
    font-size: 0.8rem;
    line-height: 1.35;
    margin-bottom: 4px;
    color: var(--color-light);
}

.menu-item-tags {
    display: flex;
    gap: 8px;
}

.tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

.tag.chef {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--color-crimson);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.tag.popular {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-footer {
    margin-top: 40px;
}

.menu-footer p {
    font-size: 0.85rem;
    font-style: italic;
}

/* Reservations & Booking System */
.reservations-section {
    position: relative;
    background-image: url('assets/images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reservations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.85);
    z-index: 1;
}

.reservations-section .section-container {
    position: relative;
    z-index: 2;
}

.reservation-info h2 {
    font-size: 2.5rem;
    margin-top: 8px;
}

.reservation-info p {
    margin-top: 24px;
    font-size: 1.05rem;
}

.quick-contact-info {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 16px 20px;
}

.info-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.info-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-gold);
}

.info-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

.info-value a:hover {
    color: var(--color-gold-light);
}

.info-value a.whatsapp-link:hover {
    color: #25D366 !important;
    opacity: 0.8;
}

.reservation-card-wrapper {
    display: flex;
    justify-content: flex-end;
}

.reservation-card {
    background-color: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-premium);
}

.reservation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.reservation-card p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.booking-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.form-group input, .form-group select {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-primary);
    padding: 10px 14px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-gold);
    background-color: rgba(255,255,255,0.08);
}

.form-group select option {
    background-color: #121212;
    color: var(--color-text-primary);
}

/* Reservation validation errors */
.form-group.invalid input, .form-group.invalid select {
    border-color: var(--color-crimson);
}

.error-msg {
    display: none;
    font-size: 0.7rem;
    color: var(--color-crimson);
    margin-top: 2px;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Testimonials Carousel Styles */
.testimonials-section {
    background-color: #0c0c0f;
}

.slider-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    height: 180px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    font-weight: 300;
}

.reviewer-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-title {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot:hover, .dot.active {
    background-color: var(--color-gold);
    transform: scale(1.2);
}

/* Contact & Custom Map Styles */
.contact-section {
    background-color: #08080a;
}

.contact-info-list {
    margin-top: 40px;
    display: grid;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item .icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.info-item .text p {
    font-size: 0.95rem;
}

.map-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.map-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-gold);
}

.mock-map {
    position: relative;
    height: 340px;
    background-color: #121212;
}

.mock-map svg {
    display: block;
    width: 100%;
    height: 100%;
}

.map-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.btn-map {
    background-color: #121212;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    display: block;
    white-space: nowrap;
}

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

/* Ping animation for map */
@keyframes ping {
    0% { transform: scale(1); opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}

.ping-circle {
    transform-origin: 160px 95px;
    animation: ping 2s infinite ease-out;
}

/* Success Modal System */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 2001;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    width: 90%;
    max-width: 480px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-text-primary);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-body p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.summary-details {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.summary-row .label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.summary-row .value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-primary);
}

.modal-notice {
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--color-text-muted);
}

#btn-modal-done {
    min-width: 120px;
}

/* Footer Section Styles */
.footer {
    background-color: #060608;
    border-top: 1px solid var(--color-border);
}

.footer .section-container {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-container {
    margin-bottom: 16px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4, .footer-socials h4 {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-socials h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-socials p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.guru-link-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
}

.btn-guru, .btn-instagram, .btn-yelp, .btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-guru svg, .btn-instagram svg, .btn-yelp svg, .btn-tripadvisor svg {
    flex-shrink: 0;
}

.btn-guru:hover {
    background-color: rgba(227, 28, 36, 0.05);
    border-color: #e31c24;
    box-shadow: 0 5px 15px rgba(227, 28, 36, 0.2);
    transform: translateY(-2px);
}

.btn-instagram svg {
    color: #e1306c;
}

.btn-instagram:hover {
    background-color: rgba(225, 48, 108, 0.05);
    border-color: #e1306c;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.2);
    transform: translateY(-2px);
}

.btn-yelp svg {
    color: #d32323;
}

.btn-yelp:hover {
    background-color: rgba(211, 35, 35, 0.05);
    border-color: #d32323;
    box-shadow: 0 5px 15px rgba(211, 35, 35, 0.2);
    transform: translateY(-2px);
}

.btn-tripadvisor svg {
    color: #34e0a1;
}

.btn-tripadvisor:hover {
    background-color: rgba(52, 224, 161, 0.05);
    border-color: #34e0a1;
    box-shadow: 0 5px 15px rgba(52, 224, 161, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 40px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* ==========================================================================
   Awards & Recognition Section
   ========================================================================== */
.awards-section {
    background-color: #0b0c10;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: #0f1016;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(210, 38, 31, 0.15);
}

.award-image {
    position: relative;
    overflow: hidden;
    background-color: #1a1c23;
}

.award-card:not(.featured) .award-image {
    height: 250px;
}

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

.award-image .award-cert-img {
    object-fit: contain;
    padding: 10px;
    background-color: #f7f7f7;
}

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

.award-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.award-tag {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.award-year {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.award-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.award-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Featured Card Layout */
.award-card.featured {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.award-card.featured .award-image {
    height: 100%;
    min-height: 350px;
}

.award-card.featured .award-info {
    justify-content: center;
    padding: 40px;
}

.award-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.award-header-row .award-tag {
    margin-bottom: 0;
}

.award-card.featured h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.award-card.featured p {
    font-size: 1rem;
}

/* Fade-In & Reveal on Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1.2s forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeInAnimation {
    to { opacity: 1; }
}

/* Delivery Platform Styling */
.delivery-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.delivery-card:hover .platform-logo {
    transform: scale(1.1);
}
.foodpanda-card:hover .delivery-btn {
    background-color: #ff3388 !important;
}
.grabfood-card:hover .delivery-btn {
    background-color: #00cc5c !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
    .section-container {
        padding: 60px 24px;
    }
    
    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-stack {
        height: 380px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .award-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
    
    .award-card.featured .award-image {
        height: 250px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu, .nav-actions .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-info {
        grid-template-columns: 1fr;
    }
    
    .reservation-card-wrapper {
        justify-content: center;
    }
    
    .reservation-card {
        padding: 24px;
    }
    
    .grid-two-cols-mobile {
        grid-template-columns: 1fr !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card.featured {
        grid-column: span 1;
    }
}

/* --- PROMOTIONS SECTION --- */
.promo-section {
    background-color: var(--color-darker);
    padding: 100px 0;
    position: relative;
}

.promo-layout {
    gap: 50px;
    align-items: flex-start;
}

.promo-deals-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.promo-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-hover);
}

.promo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.promo-card-header h3 {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: #ffffff;
}

.promo-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.promo-pax {
    font-size: 0.8rem;
    color: var(--color-light);
    opacity: 0.7;
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-items {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.promo-items li {
    font-size: 0.9rem;
    color: var(--color-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.promo-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* Flyer Poster column */
.promo-flyer-column {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.promo-poster-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 420px;
    cursor: pointer;
    margin: 0 auto;
}

.promo-poster-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.promo-poster-wrapper:hover .promo-poster-img {
    transform: scale(1.05);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.promo-poster-wrapper:hover .poster-overlay {
    opacity: 1;
}

.zoom-icon {
    background: var(--color-gold);
    color: var(--color-darker);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.poster-overlay h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.poster-overlay p {
    font-size: 0.85rem;
    color: var(--color-light);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-height: 85vh;
    max-width: 90%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2010;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-gold);
    text-decoration: none;
}

