@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ===== Global Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #fff;
  color: #111;
}

/* ===== Animated Letters ===== */
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: popIn 0.5s forwards, flicker 1s ease-in-out infinite;
  color: #090000;
  text-shadow:
    0 0 5px #f51212,
    0 0 10px #fcfcfc,
    0 0 60px #ff1915;
}

/* Sequential Animation Delay */
.letter:nth-child(1)  { animation-delay: 0.1s; }
.letter:nth-child(2)  { animation-delay: 0.2s; }
.letter:nth-child(3)  { animation-delay: 0.3s; }
.letter:nth-child(4)  { animation-delay: 0.4s; }
.letter:nth-child(5)  { animation-delay: 0.5s; }
.letter:nth-child(6)  { animation-delay: 0.6s; }
.letter:nth-child(7)  { animation-delay: 0.7s; }
.letter:nth-child(8)  { animation-delay: 0.8s; }
.letter:nth-child(9)  { animation-delay: 0.9s; }
.letter:nth-child(10) { animation-delay: 1.0s; }
.letter:nth-child(11) { animation-delay: 1.1s; }
.letter:nth-child(12) { animation-delay: 1.2s; }
.letter:nth-child(13) { animation-delay: 1.3s; }

/* ===== Keyframes ===== */
@keyframes popIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
  60% { opacity: 0.95; }
  70% { opacity: 0.85; }
  80% { opacity: 0.9; }
  90% { opacity: 0.97; }
}


/* ========== Utility Classes ========== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.4rem;
  transition: background 0.3s ease-in-out;
  white-space: nowrap;
}

.btn-primary {
  background-color: #16a083;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #117964;
}

/* ========== Navbar (Desktop Mode) ========== */

/* === NAVIGATION BAR === */

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(122, 131, 137, 0.94);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar {
  backdrop-filter: blur(8px);
  background-color: rgba(10, 18, 24, 0.6); /* slightly more transparent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo {
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-weight: 600;
  color: #00ffe1;
  text-shadow: 
    0 0 3px #6600ff,
    0 0 10px #d64e00,
    0 0 20px #c40000;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* === NAV LINKS === */
.menu-items {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.menu-items a.active {
  color: #00ffe1;
  font-weight: bold;
  text-shadow: 0 0 10px #00ffe1;
}

.menu-items li {
  list-style: none;
}

.menu-items a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #18c054;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-items a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #18c054;
  transition: width 0.3s ease;
}

.menu-items a:hover {
  color: #aaffcc;
  text-shadow: 0 0 5px #00ff88;
}

.menu-items a:hover::after {
  width: 100%;
}

/* === LUXURY MOBILE NAVBAR === */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: row;
    justify-content: start;
    align-items: flex-start;
  }

  .navbar input[type="checkbox"],
  .navbar .hamburger-lines {
    display: block;
  }

  .navbar input[type="checkbox"] {
    position: absolute;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    z-index: 6;
    opacity: 0;
    cursor: pointer;
  }

  .hamburger-lines {
    height: 24px;
    width: 35px;
    position: relative;
    top: 18px;
    right: 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger-lines .line {
    height: 3px;
    width: 100%;
    border-radius: 8px;
    background-color: #d5de21;
    transition: all 0.4s ease;
  }

  .line1 { transform-origin: top left; }
  .line3 { transform-origin: bottom left; }

@media (max-width: 768px) {
  .navbar .menu-items {
    position: absolute;
    top: 64px;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 64px);
    background: rgba(0, 0, 0, 0.94); /* 🔥 luxury dark navy */
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 2rem;
    transform: translateX(150%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 6px 0 25px rgba(255, 215, 0, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    z-index: 999;
  }
}

.logo:hover {
  text-shadow: 0 0 12px #fff8dc, 0 0 22px #ffd700;
}


  .menu-items li a {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1px;
    position: relative;
  }

  .menu-items li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffd700;
    transition: width 0.3s ease;
  }

  .menu-items li a:hover::after {
    width: 100%;
  }
.menu-items li {
  list-style: none;
}

.menu-items li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.menu-items li i {
  font-size: 1.6rem;
  min-width: 24px;
  color: #ffd700;
}
.menu-items a:active {
  transform: scale(0.98);
  opacity: 0.85;
}
.menu-items {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

  .navbar input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .logo {
    position: left;
    top: 10px;
    left: 0px;
    font-size: 2.2rem;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
  }
}




/* ========== Showcase Styling ========== */

.showcase-area {
  height: 70vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  transition: background-image 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}

.showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  margin-top: 40px;
}

.main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 5px rgb(11, 11, 11),
               0 0 10px rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
  
}


.reservation-button {
  display: inline-block;
  margin: 1rem;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid #00ffe1;
  color: #00ffe1;
  background: transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 255, 225, 0.2);
}

.reservation-button:hover {
  background-color: #00ffe1;
  color: #0a1a2f;
  box-shadow: 0 0 20px rgb(0, 255, 225);
}

/* Example sections */
#about { background-color: #11161d; }
#food { background-color: #f8f8f8; }
#contact { background-color: #0e1a24; }

/* ========== About Us Section ========== */
#about {
  padding: 8rem 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow:
    0 0 20px rgb(255, 255, 255),
    0 0 30px rgb(0, 0, 0);
  color: #000000;
  position: relative;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 500px;
  padding: 2rem;
  animation: about-text-animation 1s ease forwards;
  transform: translateX(-350%);
}

.about-img {
  flex: 1 1 350px;
  padding: 2rem;
  text-align: center;
  animation: about-img-animation 1s ease forwards;
  transform: translateX(150%);
}

.about-img img {
  max-width: 320px;
  height: auto;
  margin: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 225, 0);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .about-img img {
    max-height: 250px;
    max-width: 80%;
  }
}

#about h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: rgb(255, 64, 0);
  margin-bottom: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.37);
}

#about p {
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.05);
}

.justified {
  text-align: justify;
}

/* ========== Keyframe Animations ========== */
@keyframes about-img-animation {
  to {
    transform: translateX(0);
  }
}

@keyframes about-text-animation {
  to {
    transform: translateX(0);
  }
}



/* ========== Food Category Section ========== */

#food {
  padding: 6rem 2rem;
  background-color: #ffffff; /* dark matte navy */
  border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.99),
    0 0 30px rgba(1, 1, 1, 0.967);
  color: #030000;
}


#food h2 {
  text-align: center;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 5rem;
  text-transform: uppercase;
  color: #ff0000; /* Gold */
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(14, 1, 0, 0.485);
}


.food-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
}

.img-container {
  border-radius: 0;
  overflow: hidden;
  /* Keep the default shadow if you want */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  /* Remove hover transform effect */
  transform: scale(1.03);
  box-shadow: 0 0 25px rgb(69, 16, 18);
  border: 2px solid #00ff95;
  /* No animation or transition */
  animation: none;
  transition: none;
}

/* No change on hover */
.img-container:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

/* Images */
.food-container img {
  display: block;
  width: 100%;
  max-height: 220px;
  border-radius: 0;
  object-fit: cover;
  object-position: left;
  transition: none;
}

/* Menu label content always visible */
.img-content {
  position: absolute;
  top: 40%; /* already in final position */
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1; /* always visible */
  z-index: 2;
  text-align: center;
  transition: none;
}

.img-content h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 0 5px #000;
  letter-spacing: 1px;
}

.img-content a {
  font-size: 1.3rem;
  padding: 0.6rem 1.4rem;
}

/* Dark overlay always visible */
.img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.199);
  opacity: 1; /* always visible */
  transform: scaleY(1);
  z-index: 1;
  transition: none;
}

/* No hover changes */
.img-container:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.img-container:hover .img-content {
  opacity: 1;
  top: 40%;
}

/* Remove fadeInUp animation entirely */
@keyframes fadeInUp { }


/* ========== Food Menu Section ========== */

.food-menu-heading {
  text-align: center;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 500;
  color: #908383b3;
  margin-bottom: 2rem;
}

.food-menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem 3rem;
}

.food-menu-item {
  display: flex;
  flex: 1 1 500px;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.food-menu-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.food-description {
  flex: 1 1 250px;
  padding: 1rem;
}

.font-title,
.food-description h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  color: #d22323;
  margin-bottom: 1rem;
}

.food-description p {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: #555;
  font-weight: 500;
  line-height: 1.6;
}

.food-description .food-price {
  color: #117964;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}


/* ========== Contact Us Section ========== */

#contact {
  padding: 6rem 2rem;
  background-color: #ffffff;
  border-top: 2px solid rgba(255, 215, 0, 0.1);
  border-bottom: 2px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
    border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow:
    0 0 20px rgb(251, 251, 251),
    0 0 30px rgb(7, 7, 7);
  color: #ddd;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-img {
  flex: 1 1 400px;
  min-height: 300px;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.form-container {
  flex: 1 1 400px;
  padding: 3rem;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 1rem 0;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  background-color: transparent;
  outline: none;
  color: #444;
  transition: border-color 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.form-container input:focus,
.form-container textarea:focus {
  border-bottom: 2px solid #16a083;
}

.form-container textarea {
  resize: vertical;
  min-height: 100px;
}

.form-container a,
.form-container button {
  display: inline-block;
  background-color: #117964;
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.form-container a:hover,
.form-container button:hover {
  background-color: #0e5e4c;
  box-shadow: 0 0 12px rgba(22, 160, 131, 0.4);
}


/* ========== Footer ========== */

#footer h2 {
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  padding: 2.6rem 1rem;
  font-weight: 500;
  color: rgb(255, 0, 0);
  background: #ffffff;
  margin: 0;
}

/* ========== Media Query: Tablet & Phone View (<=768px) ========== */

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines .line {
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background-color: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: top left;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: bottom left;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    position: absolute;
    top: 64px;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 64px);
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 2rem;
    transform: translateX(-150%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
  }

  .navbar .menu-items li {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 2rem;
  }

  /* ========== Toggle Mobile Menu ========== */
  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}


/* ========== Media Query: max-width 768px ========== */
@media (max-width: 768px) {
  /* Food Section Responsive */
  .food-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .food-type {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  }

  .img-container {
    margin: 0;
  }
}

/* ========== Media Query: max-width 500px ========== */
@media (max-width: 500px) {
  html {
    font-size: 60%;
  }

  .navbar .menu-items li {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
  }

  .logo {
    position: fixed;
    top: 6px;
    right: 15px;
    font-size: 2rem;
  }

  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .food-menu-container img {
    margin: auto;
  }

  .food-menu-item {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    width: 90%;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-img {
    width: 100%;
    margin: 2rem auto;
  }
}

/* ========== Media Query: Tablets Landscape ========== */
@media (min-width: 769px) and (max-width: 1200px) {
  .img-container h3 {
    font-size: 1.5rem;
  }

  .img-container .btn {
    font-size: 0.9rem;
  }
}

/* ========== Landscape Fallback ========== */
@media (orientation: landscape) and (max-height: 500px) {
  .showcase-area {
    height: 50vmax;
  }
}

/* ========== Opening Hours Section ========== */
#hours {
  background-color: #ffffff; /* rich dark navy */
  padding: 6rem 2rem;
  text-align: center;
    border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow:
    0 0 20px rgb(255, 255, 255),
    0 0 30px rgba(0, 0, 0, 0.921);
  color: #000000;
}

#hours .section-title {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  color: rgb(255, 0, 0); /* gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  margin-bottom: 4rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  font-size: 1.6rem;
  color: #f0f0f0;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: rgb(177, 168, 168);
  border-bottom: 1px solid rgba(234, 17, 17, 0.1);
  transition: background 0.3s ease;
}

.hours-list li:hover {
  background-color: rgba(255, 0, 0, 0.373);
  color: #040000;
}

.hours-list strong {
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}
.reservation-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: #ff1900;
  border: 2px solid #ff0000;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.reservation-link:hover {
  background-color: #ffd700;
  color: #0e1a24;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}


/* ========== Booking Popup ========== */
#booking-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.964); /* deep midnight navy */
  border: 3px solid rgb(41, 123, 22);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.814);
  padding: 2rem;
  border-radius: 16px;
  z-index: 9999;
  max-width: 320px;
  color: #f2f2f2;
  font-family: "Poppins", sans-serif;
  animation: fadeIn 0.5s ease;
  backdrop-filter: blur(6px);
}

.popup-box h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #00ffe1;
  font-weight: 600;
}

.popup-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin: 1rem 0 1.5rem;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.popup-buttons .btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

/* Green Button */
.popup-buttons .btn-book {
  background: #00c851;
  color: white;
}

.popup-buttons .btn-book:hover {
  background: #009e3f;
  box-shadow: 0 0 10px rgba(0, 200, 81, 0.4);
}

/* Red Button */
.popup-buttons .btn-close {
  background: #ff3547;
  color: white;
}

.popup-buttons .btn-close:hover {
  background: #cc0000;
  box-shadow: 0 0 10px rgba(255, 53, 71, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ========== Reservation Button ========== */
.reservation-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid #000000;
  color: #131313;
  background-color: rgba(176, 145, 145, 0.953);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 4px;
  transition: all 0.2s ease-in-out;
}

.reservation-button:hover {
  background-color: #d2b48c;
  color: #060606;
  box-shadow: 0 0 10px #d2b48c;
}

.glow-logo {
  filter: drop-shadow(0 0 5px #ffffff) 
          drop-shadow(0 0 10px #16a083)
          drop-shadow(0 0 15px #f3f2f2);
  transition: filter 0.3s ease-in-out;
}
.dark-background .glow-logo {
  filter: drop-shadow(0 0 5px #fff) 
          drop-shadow(0 0 10px #00ffcc) 
          drop-shadow(0 0 15px #ffffff);
}
@media (prefers-color-scheme: dark) {
  .glow-logo {
    filter: drop-shadow(0 0 3px #ffffff)
            drop-shadow(0 0 15px #f8f5f561);
  }
}
body {
  background-color: #2a3439;
  color: #e0e0e0;
}

.navbar {
  background-color: #2a3439;
  box-shadow: 0 0 10px rgba(0, 255, 225, 0.2);
}

.logo, .main-title {
  color: #ff3300f3;
  text-shadow: 0 0 10px #00ffe1, 0 0 20px #00ffe1;
}

.glow-logo {
  filter: drop-shadow(0 0 6px #00ffe1)
          drop-shadow(0 0 2px #00ffe1);
}

.reservation-button {
  background-color: transparent;
  border: 2px solid #00ffe1;
  color: #f5f5f5;
  text-shadow: 0 0 5px #00ffe1;
  transition: background 0.3s ease, color 0.3s ease;
}

.reservation-button:hover {
  background-color: #f6f3f3;
  color: #0a1a2f;
  box-shadow: 0 0 10px #00ffe1;
}

#location {
  background: linear-gradient(to bottom right, #ffffff, #ffffff);
  padding: 6rem 2rem;
      border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow:
    0 0 20px rgb(255, 255, 255),
    0 0 30px rgba(0, 0, 0, 0.978);
  color: #060606;
}

#location .container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

#location h2 {
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: #ff1500;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

#location p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #040404;
  font-weight: 400;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.05);
}

#location strong {
  color: #000000;
  font-weight: 600;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.15);
}

#location iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 225, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pattern-section .container,
.pattern-section .food-container {
  position: relative;
  z-index: 1;
}

.pattern-section {
  position: relative;
  overflow: hidden;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23800000' stroke-width='1'%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px;
  background-repeat: repeat;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: transform 1.4s ease-out, opacity 1.2s ease;
}

.pattern-overlay.left {
  left: 0;
  transform: translateX(-100%);
  transform-origin: left;
  background-position: right top;  /* 🔥 Aligns right edge with center */
}

.pattern-overlay.right {
  right: 0;
  transform: translateX(100%);
  transform-origin: right;
  background-position: left top;   /* 🔥 Aligns left edge with center */
}


.pattern-section.active .pattern-overlay {
  transform: translateX(0);
  opacity: .12;
}



.fancy-logo {
  max-width: 100px;
  filter:
    drop-shadow(0 0 6px #00ffe1)
    drop-shadow(0 0 12px #00ffc3)
    drop-shadow(0 0 24px #00ffa2);
  border-radius: 40%;
  animation: softPulse 4s infinite ease-in-out;
  transition: transform 0.4s ease;
}

.fancy-logo:hover {
  transform: scale(1.04);
}

/* Optional glowing pulse */
@keyframes softPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 6px #00ffe1)
      drop-shadow(0 0 12px #00ffc3)
      drop-shadow(0 0 24px #000000);
  }
  50% {
    filter:
      drop-shadow(0 0 10px #a383e2)
      drop-shadow(0 0 20px #ffffff)
      drop-shadow(0 0 35px #fb0303);
  }
}
.reservation-box label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00ffe1;
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 1.2rem;
}
.menu-dropdown {
  position: relative;
}

.menu-sublist {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0e1a24;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  min-width: 180px;
}

.menu-sublist li {
  width: 100%;
}

.menu-sublist li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #18c054;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.menu-sublist li a:hover {
  background-color: #0e1a248e;
  color: #aaffcc;
}

.menu-dropdown:hover .menu-sublist {
  display: flex;
}
#background-video {
  opacity: 0;
  animation: videoFade 2s ease-in-out forwards;
}

@keyframes videoFade {
  to { opacity: 1; }
}
.img-container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ffd700;
}
.img-container:hover {
  border: 2px solid #ffd700;
}
.video-shadow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  border-radius: 12px;
  box-shadow:
    inset 0 -10px 30px rgba(0, 0, 0, 0.5),
    inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-items li i {
  margin-right: 0.8rem;
  color: #ffd700;
  min-width: 20px;
  text-align: center;
}
.hamburger-icon {
  transition: transform 0.4s ease;
  filter: drop-shadow(0 0 6px #ffd700);
}

.navbar input[type="checkbox"]:checked ~ .hamburger-lines .hamburger-icon {
  transform: rotate(90deg) scale(1.1);
}
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 768px) {
.mobile-nav-toggle {
  display: block;
  position: absolute;
  top: 18px;
  right: 20px;   /* ✅ move to right */
  left: auto;    /* remove left positioning */
  z-index: 6;
}


  .mobile-nav-toggle input {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0;
    cursor: pointer;
    z-index: 7;
  }

  .mobile-nav-toggle label {
    cursor: pointer;
    display: inline-block;
    z-index: 6;
  }

  /* Show nav menu when checkbox is checked */
  #nav-toggle:checked ~ .menu-items {
    transform: translateX(0);
    opacity: 1;
  }

  #nav-toggle:checked ~ label .hamburger-icon {
    transform: rotate(90deg);
  }
}
#menu-selection {
  margin-bottom: 5rem;
}
.floating-cart-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: gold;
  color: black;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-cart-btn:hover {
  background-color: #e6c200;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.9);
}
@media (max-width: 768px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.85); /* dark background for mobile menu bar */
  }
}

/* Add space after the title only */
.showcase-container h1 {
  margin-bottom: 5rem; /* adjust as needed */
}
#reservation-button-container {
  padding-top: 0.6rem; /* pushes the button down without moving title */
}
#order-button-container {
  margin-top: 0.1rem !important; /* decrease from 1rem */
}
/* Push the hero title down only on index.html */
body.index-page .showcase-container h1 {
  margin-top: 10rem; /* adjust value until it looks right */
}
/* Make menu section a 2x2 grid */
.food-container {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr); /* two columns */
  gap: 2rem; /* spacing between items */
}

.food-type {
  width: 100%;
}
@media (max-width: 768px) {
  .food-container {
    grid-template-columns: 1fr; /* single column for small screens */
  }
}
.allergen {
  font-weight: bold;
  margin-left: 0.3rem;
  font-size: 0.95em;
  background: none;
  border: none;
  padding: 0;
}

/* FSA chopping board colours - text only */
.allergen.dairy        { color: #007bff; }   /* Blue */
.allergen.nuts         { color: #8b4513; }   /* Brown */
.allergen.crustaceans  { color: #800080; }   /* Purple */
.allergen.gluten       { color: #d900ff; }   /* Yellow */
.allergen.egg          { color: #000; }      /* Black (or keep white with black outline if needed) */
.allergen.fish         { color: #ff0000; }   /* Red */
.allergen.soy          { color: #28a745; }   /* Green */
.allergen.sesame       { color: #808080; }   /* Grey */
.hours-table {
  max-width: 600px;
  margin: 2rem auto;
  border: 2px solid #0fad0a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(246, 4, 0, 0.918);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.hours-row:nth-child(even) {
  background: #f9f9f9; /* zebra effect */
}

.hours-row .day {
  font-weight: bold;
  color: #0e8410d9;
  text-shadow: 0 0 4px #089f1c4a;
}

.hours-row .time {
  color: #fb0101;
  font-weight: 600;
}
#reservation-button-container,
#order-button-container {
  margin: 0.2rem 0; /* tighten them up */
}

#reservation-button-container .reservation-button,
#order-button-container .reservation-button {
  margin: 0; /* remove extra margin from the buttons themselves */
}
#dynamic-title {
  white-space: nowrap;       /* keep text together */
  overflow-wrap: normal;     /* prevent breaking */
  word-break: keep-all;      /* stop splitting words */
}
@media (max-width: 500px) {
  .main-title {
    font-size: 1.6rem !important;
    line-height: 1.4;
  }
}
.accordion-item {
  border-bottom: 1px solid #444;
}

.accordion-header {
  width: 100%;
  background: #a21b1b;
  color: #fff;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #d22323;
}

.accordion-content {
  display: none; /* hidden by default */
  padding: 1.5rem;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 0 6px #111;
}

.accordion-content.active {
  display: block; /* show when active */
}
.popup-overlay {
  display: none;              /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999 !important;  /* force it above navbar/menu */
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  z-index: 100000; /* ensure above overlay */
}
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
  }
}


/* Buttons */
#confirm-schedule-btn {
  background: #d4af37;
  border: none;
  padding: 0.8rem 1.5rem;
  margin-right: 1rem;
  cursor: pointer;
  border-radius: 6px;
}

#close-schedule-btn {
  background: #ccc;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-radius: 6px;
}
#dinner-schedule-popup { display:none; }
#view-cart-popup { display: none; }
@media (max-width: 768px) {
  .logo {
    font-size: 2.4rem;   /* smaller for tablets/phones */
    top: 10px;
    left: 20px;
    right: auto;
  }
}

@media (max-width: 500px) {
  .logo {
    font-size: 1rem;   /* even smaller for very small screens */
    top: 10px;
    left: 15px;
    right: auto;
  }
}
/* Opening Hours Table - Mobile Friendly */
@media (max-width: 768px) {
  #hours table {
    width: 100%;           /* use full screen width */
    max-width: none;       /* remove max-width restriction */
    font-size: 1rem;       /* smaller but still readable */
    border-spacing: 0;
    margin: 0 auto;
  }

  #hours th, 
  #hours td {
    padding: 0.6rem;       /* tighter padding */
    text-align: center;    /* center all text */
    white-space: nowrap;   /* keep times on one line */
  }
}

/* For very small screens (phones <500px) */
@media (max-width: 500px) {
  #hours table {
    font-size: 0.85rem;    /* even smaller on very small screens */
  }

  #hours th, 
  #hours td {
    padding: 0.4rem;       /* compact spacing */
  }
}

/* Ensure Lunch & À la Carte columns are aligned */
#hours td:nth-child(2), /* Lunch column */
#hours td:nth-child(3)  /* A la Carte column */ {
  min-width: 100px;       /* balanced width */
  text-align: center;
  white-space: nowrap;    /* force inline times */
}
