/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: url('images/restaurant-bg.jpg') center center fixed;
  background-size: cover;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.nav {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
/* Nav opening hours */
.nav-hours {
  text-align: center;
  font-size: 0.9rem; /* smaller size */
  color: #fff;
  margin-top: 5px;
}
/* Brand Logo and Title */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
  width: 50px;
  border-radius: 50%; /* round logo */
}
/* Load Cloister Black BT font */
@font-face {
  font-family: 'CloisterBlack';
  src: url('images/CloisterBlackBT.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Apply to brand title */
.brand-title {
  font-family: 'CloisterBlack', serif;
  font-size: 2rem;
  color: red;
  white-space: nowrap;
}




/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
}

.hero-bg-overlay {
  background: rgba(0,0,0,0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

.hero-bg-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #ff0000;
  margin-bottom: 10px;
}

.hero-bg-overlay p {
  font-size: 1.2rem;
  color: #fff;
}

/* Hero slider arrows */
.hero-slider .prev, .hero-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.hero-slider .prev { left: 20px; }
.hero-slider .next { right: 20px; }

.hero-slider .prev:hover, .hero-slider .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* Food Gallery */
#food-gallery {
  padding: 100px 20px;
  text-align: center;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
}

#food-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ff0000;
  text-align: center;
}

.food-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.food-item {
  flex: 1 1 0;
  max-width: 300px;
  text-align: center;
}

.food-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.food-item p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .food-gallery {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* About Section */
#about {
  padding: 140px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
  line-height: 1.8;
}

#about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #ff0000;
}

#about p {
  font-size: 1.2rem;
  color: #fff;
}

/* Menu Section */
#menu {
  padding: 150px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
}

#menu h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ff0000;
}

.menu-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-qr img {
  width: 300px;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 3px solid #fff;
}

.menu-qr a {
  color: #ff0000;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Contact Section */
#contact {
  padding: 120px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
}

#contact a {
  color: #13b8a2;
  text-decoration: underline;
  font-weight: 600;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Extras Section */
.extras {
  margin-top: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.extras h3 {
  color: #ff0000;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.extras ul {
  list-style: none;
}

.extras ul li {
  font-size: 1.1rem;
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .food-gallery {
    flex-direction: column;
    align-items: center;
  }

  .nav-hours-container {
    justify-content: center;
  }
}
/* Location Section */
#location {
  padding: 120px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
}

#location h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff0000;
}

#location p, #location a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

#location a:hover {
  color: #13b8a2;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.9rem;
  border-top: 1px solid #ff0000;
  z-index: 1000;
}
/* Desktop Navbar Adjustments */
@media (min-width: 769px) {
  .desktop-nav .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center; /* keep nav links vertically centered */
  }

  .desktop-nav .brand {
    display: flex;
    flex-direction: column; /* stack logo, name, and hours */
    align-items: center;
    gap: 5px; /* space between items */
  }

  .desktop-nav .brand-title {
    font-size: 2rem; /* bigger brand name */
    text-align: center;
  }

  .desktop-nav .nav-hours {
    font-size: 1.2rem; /* larger opening hours */
    margin-top: 3px;
    text-align: center;
    color: #fff;
  }

  /* Keep nav links normal size */
  .desktop-nav .nav-list a {
    font-size: 1.5rem; /* adjust size if needed */
    line-height: normal;
  }
}


/* Mobile Navbar (hidden by default) */
.mobile-nav {
  display: none; /* hidden by default, shown only on mobile */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5px 0;
  gap: 1px; /* spacing between brand, nav links, and hours */
}

.mobile-nav .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav .brand-title {
  font-size: 1.6rem; /* slightly bigger brand name */
}

.mobile-nav .nav-inner .nav-list {
  display: flex;
  justify-content: center;
  gap: 10px; /* spacing between nav links horizontally */
  flex-wrap: wrap;
  margin-top: 5px;
}

.mobile-nav .nav-hours {
  font-size: 0.85rem;
  margin-top: 5px; /* placed below nav links */
}

/* Media Query: show/hide navbar based on screen size */
@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* hide desktop navbar on mobile */
  }

  .mobile-nav {
    display: flex; /* show mobile navbar */
  }
}
@media (max-width: 768px) {
  #contact p a {
    display: block; /* stack vertically */
    margin: 5px 0;
  }
  
  /* Hide the separator for mobile */
  #contact p {
    display: flex;
    flex-direction: column; /* stack children */
    align-items: center;    /* center them */
  }
  
  /* Hide any separator character inside p (like |) */
  #contact p span.separator {
    display: none;
  }
}
