/* === GLOBAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cinzel', serif;
    background-color: #000;
    color: white;
    line-height: 1.6;
  }
  
  /* === HEADER === */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(212, 74, 0);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .logo {
    color: #ffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
   
  }
  
  
  .hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1100;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-list li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  
  .nav-list li a:hover {
    color: #FFD700;
  }
  
  /* === HERO === */
  .hero {
    height: 100vh;
    margin-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/Gillimg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.4);
    border: 4px solid #FFD700;
    padding: 2rem;
  }
  
  .bar-name {
    font-size: 3rem;
    color: #FFD700;
    text-align: center;
    text-transform: uppercase;
  }
  
  /* === MENU === */
  .menu-section {
    background: url("images/fig3.jpeg") no-repeat center center/cover;
    padding: 60px 20px;
    color: white;
    text-align: center;
  }
  
  .menu-tabs {
    margin-bottom: 20px;
  }
  
  .tab-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .tab-btn.active,
  .tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
  }
  /* Keep tabs visible while scrolling the menu */
.menu-tabs {
  position: sticky;
  top: 80px; /* same as header height */
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 0;
  z-index: 900;
}

  .menu-card {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .menu-card ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-card li {
    margin: 15px 0;
    font-size: 1.1rem;
  }
  /* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px; /* optional, remove if you want original */
}

/* === GALLERY SECTION === */
.gallery-section {
  background:  rgba(255, 89, 0, 0.684);
  padding: 4rem 2rem;
  text-align: center;
}

.gallery-title {
  color: #ffff;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  perspective: 1200px; /* ✅ gives 3D depth */
  overflow: hidden;
}

.carousel {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d; /* ✅ allow 3D transforms */
}

.carousel-item {
  position: absolute;
  width: 280px;
  height: 200px;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  border-radius: 15px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #FFD700;
  border-radius: 15px;
}

/* ✅ Center image */
.carousel-item.active {
  transform: translateZ(200px) scale(1.2);
  opacity: 1;
  z-index: 3;
}

/* ✅ Left image */
.carousel-item.left {
  transform: translateX(-220px) rotateY(25deg) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

/* ✅ Right image */
.carousel-item.right {
  transform: translateX(220px) rotateY(-25deg) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

/* ✅ Hide all others completely */
.carousel-item.hidden {
  opacity: 0;
  transform: translateZ(-300px) scale(0.8);
  z-index: 1;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #FFD700;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 10px;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-btn:hover {
  background: rgba(255, 215, 0, 0.4);
}
.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  overflow-x: scroll;
  padding: 2rem 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gallery img {
  width: 300px;
  height: auto;
  object-fit: cover;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

/* Even smaller images on small devices */
@media (max-width: 768px) {
  .gallery img {
    width: 150px;
  }
}


  /* === CONTACT SECTION === */
  .contact-section {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .contact-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
  }
  
  .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .contact-info {
    color: #fff;
    font-size: 1.1rem;
  }
  
  .map-container {
    border: 3px solid orange;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
  }
  
  /* Optional: side-by-side on larger screens */
  @media (min-width: 768px) {
    .contact-content {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
  
    .contact-info {
      text-align: left;
      max-width: 300px;
    }
  }
  
  
  /* === FOOTER === */
  .footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    text-align: center;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }
  
  .social-links a {
    color: white;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-links a:hover {
    color: #FFD700;
    transform: scale(1.2);
  }
  
  
  .footer-text {
    color: white;
    font-size: 0.9rem;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .header {
      justify-content: space-between; /* ✅ Keep this even on mobile */
    }
  
    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      background: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      display: none;
      z-index: 999;
    }
  
    .nav-list.show {
      display: flex;
    }
  
    .nav-list li {
      margin-bottom: 1rem;
    }
  
    .nav-list li a {
      font-size: 1.3rem;
      display: block;
      width: 100%;
      text-align: left;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
    }
  
    .bar-name {
      font-size: 2.2rem;
      text-align: center;
    }
  
    .hero-content {
      padding: 1rem;
    }
  }
  