/* ============================================
   COLORS RESTAURANT & BAR - CUSTOM STYLES
   Premium Dark Theme Design
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-yellow: #ffd93d;
    --accent-purple: #a29bfe;
    --accent-pink: #fd79a8;
    --accent-blue: #74b9ff;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-text: #e0e0e0;
    --dark-border: #2a2a2a;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-rainbow: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #fd79a8);
    --accent-red: #ff6b6b;
  --accent-teal: #4ecdc4;
  --accent-yellow: #ffd93d;
  --accent-purple: #a29bfe;
  --accent-pink: #fd79a8;
  

  --accent-gradient: linear-gradient(
    90deg,
    var(--accent-red),
    var(--accent-teal),
    var(--accent-yellow),
    var(--accent-purple),
    var(--accent-pink)
  );
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Fade out */
#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ===== ANIMATED LINE ===== */
.loader-line {
  width: 180px;
  height: 4px;
  border-radius: 10px;

  background: linear-gradient(
    90deg,
    #ff3b3b,
    #ffb703,
    #38b000,
    #00b4d8,
    #ff3b3b
  );

  background-size: 300% 100%;
  animation: moveLine 1.4s linear infinite;
}

/* Line animation */
@keyframes moveLine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}


/* ===== Navigation Styles ===== */
/* ==============================
   NAVBAR LOGO STYLING
   ============================== */

.navbar-brand {
    padding: 0;
}

.navbar-logo {
    height: 55px;              /* Desktop default */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    max-height: 70px; 
}

/* Shrink logo slightly on scroll */
.navbar.scrolled .navbar-logo {
    height: 40px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
        .navbar-brand img,
  .navbar-logo {
    height: 48px;
  }
}

.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers both lines */
    line-height: 1.1;
  }
  
  .navbar {
    min-height: 80px;
}

@media (max-width: 768px) {
    .navbar {
        min-height: 64px;
    }
}
.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-rainbow);
    transition: width 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

/* ===== Hero Section Styles ===== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.hero,
.hero-section,
#heroCarousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.3;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Story Section Styles ===== */
/* ===== Our Story – Aesthetic Two Column ===== */

.story-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0b0b0b, #0f0f0f);
  }
  
  .story-wrapper {
    min-height: 520px; /* ensures visual balance */
  }
  
  .story-text {
    padding-right: 60px;
  }
  
  .story-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: inline-block;
    margin-bottom: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;      
  }
  
  .story-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
    max-width: 520px; /* keeps text visually equal to image */
  }
  
  .story-image-box {
    width: 100%;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Hover effect (subtle) */
  .story-image-box img {
    transition: transform 0.6s ease;
  }
  
  .story-image-box:hover img {
    transform: scale(1.04);
  }

  
  @media (max-width: 991px) {
    .story-wrapper {
      min-height: auto;
    }
  
    .story-text {
      padding-right: 0;
      margin-bottom: 40px;
    }
  
    .story-text p {
      max-width: 100%;
    }
  
    .story-image-box {
      height: 360px;
    }
  
    .story-text h2 {
      font-size: 2.2rem;
    }
  }
/* ===== Menu Section Styles - Simplified ===== */
.menu-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0b0b0b, #0f0f0f);
  }
  
  .menu-wrapper {
    min-height: 520px;
  }
  
  .menu-left {
    padding-right: 60px;
  }
  
  .menu-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: inline-block;
    margin-bottom: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
  }
  
  .menu-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .bestseller-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .bestseller-menu li:nth-child(1):hover .dish-name {
  color: var(--accent-red);
}
.bestseller-menu li:nth-child(2):hover .dish-name {
  color: var(--accent-teal);
}
.bestseller-menu li:nth-child(3):hover .dish-name {
  color: var(--accent-yellow);
}
.bestseller-menu li:nth-child(4):hover .dish-name {
  color: var(--accent-purple);
}

  
  .bestseller-menu li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .dish-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
  }
  
  .dish-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
  }
  
  .menu-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    line-height: 1.7;
  }
  
  /* RIGHT CARD */
  .menu-right {
    display: flex;
    justify-content: center;
  }
  
  .menu-card {
    background: #111;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
  }
  
  .qr-box {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    padding: 15px;
    background: #0b0b0b;
    border-radius: 16px;
  }
  
  .qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .menu-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .menu-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    line-height: 1.7;
  }
  
  .menu-link {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  .menu-link:hover {
    background: #fff;
    color: #0b0b0b;
  }

  @media (max-width: 991px) {
    .menu-left {
      padding-right: 0;
      margin-bottom: 50px;
    }
  
    .menu-left h2 {
      font-size: 2.2rem;
    }
  
    .menu-card {
      padding: 40px 30px;
    }
  
    .qr-box {
      width: 170px;
      height: 170px;
    }
  }

  .bestseller-menu li {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .bestseller-menu li:hover {
    padding-left: 8px;
  }
  
  .bestseller-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.6);
    transition: width 0.3s ease;
  }
  
  .bestseller-menu li:hover::before {
    width: 24px;
  }
  
  .bestseller-menu li:hover .dish-desc {
    color: rgba(255,255,255,0.85);
  }

  .menu-card {
    transition: all 0.35s ease;
  }
  
  .menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }

  
  .menu-link {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  
  .menu-link:hover {
    background: #fff;
    color: #0b0b0b;
  }
  
  .menu-link:hover::after {
    width: 60%;
  }
  
/* ===== Gallery Section Styles - Stable Grid Layout ===== */
/* ===== Gallery Section ===== */
/* ===== GALLERY ===== */

.gallery-section {
    padding: 100px 0;
    background: #0b0b0b;
  }
  
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
  }
  
  /* Gallery Card */
  .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
  }
  
  /* Image */
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }
  
  /* Hover Glow (COLORS vibe) */
  .gallery-item:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.35);
  }
  
  /* Overlay */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .overlay i {
    font-size: 2rem;
    color: #fff;
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  /* ===== MODAL ===== */
  
  .gallery-modal {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .gallery-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: fadeIn 0.4s ease;
  }

  .gallery-eyebrow{
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: inline-block;
    margin-bottom: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Fade animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
  }
  
  /* Close */
  .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  
  /* Navigation */
  .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
  .modal-nav:hover {
    opacity: 1;
  }
  
  .modal-nav.prev { left: 30px; }
  .modal-nav.next { right: 30px; }
  
/* ===== Contact Section Styles ===== */
.contact-section {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    min-width: 30px;
}

.contact-item h5 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-border);
}

.form-control {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--dark-text);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.form-control::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
}

/* ===== Footer Styles ===== */
/* ===== FOOTER ===== */

.footer {
    background: #0b0b0b;
    color: #ccc;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  
  /* Brand */

.footer-logo {
  width: auto;
  height: 70px;
  margin-bottom: 18px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .footer-logo {
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-logo {
    height: 52px;
  }
}

  
  /* Titles */
  .footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-title::after {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    display: block;
    margin-top: 8px;
  }
  
  /* Links */
  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff6b6b;
  }
  
  /* Contact */
  .footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
  }
  
  .footer-contact i {
    color: #ff6b6b;
    margin-top: 5px;
  }
  
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: #4ecdc4;
  }
  
  /* Bottom */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding: 25px 0;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  /* Social */
  .footer-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .footer-social a::after,
.footer-social a::before {
  content: none !important;
}

  
  .footer-social a:hover {
    color: #ff6b6b;
    transform: translateY(-3px);
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .footer-brand p {
      max-width: 100%;
    }
  
    .footer-social a {
      margin-left: 10px;
    }
  }

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        padding: 2rem 0 0 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .qr-title {
        font-size: 1.4rem;
    }
    
    .qr-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .qr-placeholder i {
        font-size: 4rem;
    }
    
    .menu-item-content h4 {
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .brand-logo {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .qr-code-block {
        padding: 2.5rem 1.5rem;
    }
    
    .qr-title {
        font-size: 1.2rem;
    }
    
    .qr-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .qr-placeholder i {
        font-size: 3rem;
    }
    
    .menu-item {
        padding: 1.25rem 0;
    }
    
    .menu-item-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
}

/* ===== Smooth Scroll Animation ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== Utility Classes ===== */
.text-gradient {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

