/* Import Instrument Serif font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');


/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Instrument Serif', serif;
    background-color: black;
    color: white;
    width: 100%;
}
html, body {
  overflow-x: hidden;
}



@keyframes appear {
    from {
      opacity: 0;
      clip-path: inset(100% 100% 0 0);
    }
    to {
      opacity: 1;
      clip-path: inset(0 0 0 0);
    }
  }


  @keyframes slide {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);

    }
  }


  .about-content{
    animation: slide linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
  
  .about-images  img {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 1%;
  }

  

/* ===== Header & Navigation ===== */
.top-bar {
  position: fixed;
  top: 2px;
  left: 52%;              /* Move to center */
  transform: translateX(-50%);  /* Pull it back by half its width */
  width: 90%;             /* Still maintain 90% width */
  max-width: 1800px;      /* Optional: limit width for large screens */

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.667);
  font-size: 14px;
  font-family: sans-serif;
  padding: 6px 15px;
  z-index: 20;
margin: 0;
  display: flex;
  align-items: center;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.667);              /* Force link color to white */
  text-decoration: none;     /* Remove underline */
}
.top-bar-content {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  align-self: center;
}

.top-bar-content span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  text-decoration: underline; /* Optional: underline on hover */
  color: #ffffff;             /* Optional: soft hover color */
}

header {
  position: fixed;
  top: 30px;
  width: 100%;
  z-index: 10;
  background: transparent; /* background handled by header-bg */
}

.header-bg {
  margin: 0 40px; /* Leave 20px space on left/right */
  height: 60px;
  border-radius: 12px;
  background-color: #680401;
  background-image: url('images/header-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden; /* crop background image inside rounded corners */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 40px;
}


/* Each item takes equal space */
.logo, .navbar, .spacer {
    flex: 1;
    display: flex;
    justify-content: center; /* Ensures items stay centered in their section */
    align-items: center;
}

.logo {
    margin: 0;    
    display: flex;
    justify-content: flex-start; /* Ensures the logo stays fully left within its box */
}


/* Logo Styling */
.logo img {
    height: 150px;
    width: auto;
    display: block;
}

/* Spacer Styling */
.spacer {
    width: 225px;
    height: 150px;
}

/* Navbar stays centered */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 65px;
    padding: 0;
    margin: 0;
}

/* Menu Text Styling */
.nav-links a {
    text-decoration: none;
    font-size: 18px;
    color: #FED56C;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: gold;
}

.nav-links li:last-child a {
  background-color: #ECC42E;      /* Button color */
  color: black;                   /* Text color */
  padding: 10px 20px;             /* Space inside button */
  border-radius: 8px;             /* Rounded corners */
  text-decoration: none;          /* Remove underline */
  font-weight: 600;               /* Bold text */
  display: inline-block;          /* Ensures padding is applied properly */
  transition: background-color 0.3s ease;  /* Smooth hover transition */
}

.nav-links li:last-child a:hover {
  background-color: #610907;
  color: white;   
        /* Darker on hover */
}


/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 101%;
    overflow: hidden;
}
/* Image Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-img.active {
    opacity: 1;
}

/* Hero Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 3rem;
    font-family: 'Italianno', cursive;
    color: white;
    z-index: 3;
    font-weight:normal;}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/layer.png') no-repeat center/cover;
    opacity: 0.8; /* Adjust transparency */
    z-index: 2; /* Above images, below text */
}

/* Left and Right Vertical Lines */
.vertical-line {
    position: fixed;  /* Ensures lines stay fixed as page scrolls */
    top: 0;
    width: 0.1px; /* Adjust thickness */
    height: 100vh; /* Full viewport height */
    background-color: rgba(202, 172, 132, 0.8); /* Goldish color */
    z-index: 3; /* Below text but above images */
}

.left-line {
    left: 75px; /* Adjust distance from left */
}

.right-line {
    right: 75px; /* Adjust distance from right */
}

html {
    scroll-behavior: smooth;
  }
  

/* .horizontal-line {
    position: fixed;
    top: 150px; 
    width: 100%; 
    height: 0.1px;  
    background-color: rgba(202, 172, 132, 0.8); 
    z-index: 3;  
} */

.about-us {
    position: relative;
    background-color: rgba(11, 19, 21, 1); /* Dark Background */
    color: #d4af37; /* Gold Text */
    text-align: center;
    padding: 80px 10%;
    z-index: 2;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #b9975b;
    margin-bottom: 15px;
}

.about-content h1 {
    font-size: 42px;
    font-weight:300;
    margin-bottom: 15px;
    font-family: 'Instrument Sans', sans-serif;
}

.about-content p {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    z-index: 3;
    font-family: 'Instrument Sans', sans-serif;
}

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 3;
}

.about-images img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    z-index: 3;
}

.pattern {
    
    background-size: cover;
    background-position: center;
    z-index: 3;
}

/* Vertical Lines - 4 Lines */
.vertical-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Prevent interaction */
    z-index: -1; /* Send to the back */
}

/* Create four vertical lines */
.vertical-lines .line {
    content: "";
    position: absolute;
    top: 0;
    width: 0.1px; /* Line thickness */
    height: 100%;
    background-color: rgba(202, 172, 132, 0.8); /* Light color for visibility */
}

/* Position each line */
.vertical-lines .line-1 { left: 20%; }
.vertical-lines .line-2 { left: 40%; }
.vertical-lines .line-3 { left: 60%; }
.vertical-lines .line-4 { left: 80%; }


/* Main section styling */
.specialties {
    /* background-color: #0B1315; */
    margin: 0;
    padding: 0;
    background-image: url('images/header-bg.png');
    background-size: cover;      /* Ensures it fills the space */
    background-repeat: no-repeat;
    background-position: center;
  }
  
  /* Inner container */
  .specialties-inner {
    display: flex;
    width: 100vw;
    background-color:#0F1D21;
    gap: 40px;
    box-sizing: border-box;
    align-items: stretch;
    background-image: url('images/gallery-bg.png');
    background-size: cover;      /* Ensures it fills the space */
    background-repeat: no-repeat;
    background-position: center;
    
  }
  
  /* Text block */
  .specialties-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 9%;
  }

  .specialties-text p{

font-size: 20px;
    font-family: 'Instrument Sans', sans-serif;
    margin-bottom: 40px;
text-align: center;    max-width: 70%;
margin-left: auto;
  margin-right: auto;

  }
  
  /* Image that determines height */
  .specialties-inner img {
    display: block;
    height: auto;
    max-height: 75%;
    width: auto;
    max-width: 45%;
    object-fit: contain;
  
  }
  
  /* Heading */
  .specialties-inner h2 {
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    color: #d4af37;
    margin: 15px;
  }
  
  /* Paragraph */
  .specialties-inner img {
    width: 635px;
    height: 733px;
    object-fit: cover; /* or use 'contain' if you want the entire image visible without cropping */
    transition: opacity 0.5s ease-in-out;
  }
  
  .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 142px;
    color: #b9975b;;
  }

  
  .section-title .line {
    width: 50px;        /* Adjust this to control line length */
    height: 3px;
    background-color:#b9975b;
  }
  
  
  /* Button */
  .view-all {
    background: none;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    align-self: center;
    text-decoration: none;
  }
  
  .view-all:hover {
    background: #d4af37;
    color: black;
    text-decoration: none;
  }


  .view-menu {
    background: none;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    align-self: center;
  }
  
  .view-menu:hover {
    background: #d4af37;
    color: black;
  }
  
  
  .our-menu {
    position: relative;
    background-color: rgba(11, 19, 21, 1); /* Dark Background */
    color: #d4af37; /* Gold Text */
    text-align: center;
    padding: 80px 10%;
    z-index: 2;
}

.our-menu h1 {
    font-size: 42px;
    font-weight: 300;
    font-family: 'Instrument Sans', sans-serif;
    padding: 2%;
}

.menu-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 3;
}

.menu-item {
    position: relative;
}

.image-container {
    position: relative;
}

.menu-images img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 22, 18, 0.562);  /* Semi-transparent overlay */
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
    z-index: 3; /* Makes sure overlay is above the image */
}

.image-container:hover .overlay {
    opacity: 0;
}

.view-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.menu-images h2 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #b9975b;
    margin-bottom: 15px;
    font-family: 'quicksand';
    font-style: normal;
}

.menu-images p {
    color: #b9975b;
    padding: 0%;
    font-size: 16px;
}


.review-highlight-card {
  max-width: 550px;
  margin: 30px auto 0;
  padding: 25px 30px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rating-score {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stars {
  font-size: 22px;
  color: gold;
  margin-bottom: 20px;
}

.see-reviews-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.see-reviews-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}


.customer-reviews {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  background: url('images/IMG.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
}


.customer-reviews::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(30, 30, 30, 0.473); /* Change opacity here */
  z-index: -1;
}



.bottom img{

    height: 200px;
    width: auto;
    justify-content: center;
    align-items: center;
    
}


.bottom {
    display: flex;
    background-color:#0F1D21;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    z-index: 3;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
}

footer{

  background-color:#0B1315;
padding-bottom: 5%;

}

.SM {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.SM p {
 
    text-decoration: underline;
    color: #b9975b;
}
/* Preloader should cover entire screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black; /* fallback while video loads */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
  }
  
  #preloader.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Centered video styling */
  .smoke video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

.customer-reviews {
  padding: 60px 75px;
 
  text-align: center;
}

.customer-reviews h2 {

  margin-bottom: 42px;
  color: #d4af37;
  font-style: normal;
  font-size: 42px;
  
}

.reviews-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.review-card {
  flex: 0 0 350px;
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  text-align: left;
}

.review-card .stars {
  font-size: 1.7rem;
  color: gold;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 10px;
}

.review-card h4 {
  font-size: 1rem;
  color: #777;
  margin-top: 10px;
}

/* Hide scrollbar for modern browsers */
.reviews-container::-webkit-scrollbar {
  display: none;
}
.reviews-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



/* Container Setup */
.container {
  background-color:#0B1315;
  color: #fff;
  padding: 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-wrapper {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-wrapper h2{
  font-size: 50px;
  font-family: 'Instrument Sans', sans-serif;
  color:#d4af37;
  padding-top: 50px;
  padding-bottom: 25px;
  margin-bottom: 0px;

}

/* Contact Section */
.contact-section h2 {
  font-size: 40px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #ffd700;
}

.contact-section{
  display: flex;
  justify-content: space-between;
  font-size: 30px;
}

.contact-section p {
  margin: 5px 0;
  font-size: 16px;
  
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.social-links a {
  color: #000; /* or your preferred color */
  text-decoration: none !important;}


.social-links a i {
  text-decoration: none;
}
.social-links i {
  font-size: 28px; /* or any size you like */
}


.social-links a:hover {
  color: #007bff; /* optional hover effect */
}


.contact-section a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dotted #ffd700;
}

.contact-section a:hover {
  color: #ffd700;
}

/* Social Links */
.social-links h3 {
  margin-bottom: 30px;
  font-size: 20px;
}

.main-nav-social {
  display: flex;
  gap: 15px;
}

.nav-social-link img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.nav-social-link:hover img {
  transform: scale(1.1);
}

/* Address Styling */
.address {
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}

/* Map */
.map-container iframe {
  border-radius: 12px;
  width: 100%;
  height: 250px;
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.footer-link {
  color: #ffd700;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}




  
 /* @media (max-width: 480px) {
  .restaurant-name {
    font-size: 20px;
  }

  .nav-links {
    font-size: 14px;
    gap: 10px;
  }

  .logo img {
    height: 100px;
    width: auto;
  }

  .hero-text {
    font-size: 24px;
    padding: 0 10px;
  }

  .about-content p,
  .specialties-text p,
  .our-menu p {
    font-size: 14px;
    padding: 0 10px;
  }

  .about-images img,
  .menu-images img,
  .specialties-inner img {
    max-width: 90%;
    height: auto;
  }

  .footer {
    font-size: 12px;
  }
} */



/* ===== Responsive Adjustments ===== */


@media screen and (max-width: 809px) {
  .header-container {
    display: flex;
    justify-content: flex-start; /* all items start at left */
    align-items: center; /* vertically center */
  }

 
  .nav-links li:nth-child(1) a, 
  .nav-links li:nth-child(2) a,
  .about-images img:nth-child(1),
  .about-images img:nth-child(2),
  .about-content h3,
  .vertical-line,
  .spacer {
    display: none;
  }

  .top-bar {
    position: fixed;
    top: 2px;
    left: 50%;              /* Move to center */
    transform: translateX(-50%);  /* Pull it back by half its width */
    width: 90%;             /* Still maintain 90% width */
    max-width: 1800px;      /* Optional: limit width for large screens */
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.667);
    font-size: 8px;
    font-family: sans-serif;
    padding: 6px 15px;
    z-index: 20;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  .top-bar-content {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    align-self: center;
  }
  



  .logo {
    flex: 0 0 auto;
    justify-items: flex-start;
    margin-left: -15px;

  }

  .logo img {
    height: 80px;
    max-width: 100%;
    justify-items: flex-start;
   }

  .nav-links {
    font-size: 5px;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 0;
    left: -50px;
  }

  .header-bg{
    justify-self: center;
  }
  

  .nav-links a {
    display: flex;
    font-size: 14px;
    white-space: nowrap; /* keep nav link text in one line */
    justify-content: flex-start;
  }
  
  .nav-links li:last-child a {
    background-color: #ECC42E;      /* Button color */
    color: black;                   /* Text color */
    padding: 2px 2px;             /* Space inside button */
    border-radius: 8px;             /* Rounded corners */
    text-decoration: none;          /* Remove underline */
    font-weight: 600;               /* Bold text */
    display: inline-block;          /* Ensures padding is applied properly */
    transition: background-color 0.3s ease;  /* Smooth hover transition */
  }

.hero{
  height: 700px;
}

.slider{
  height: 120%;
}

  .hero-text {
    font-size: 2rem;
    padding: 0 10px;
  }

 .about-content h1{
  text-transform: uppercase;
  color: #b9975b;
  margin-bottom: 15px;
  font-family: 'Instrument Serif';
 }

.about-us{
  padding: 30px 10%;
}

.about-images  img {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0%;
}

.our-menu{
  background-color: #0F1D21;
  padding: 40px 10%;

}


.SM,
.bottom{
  background-color: #0F1D21;
}

.menu-images{
  flex-direction: column;
}

.our-menu h1{
  text-transform: uppercase;
  color: #b9975b;
  margin-bottom: 15px;
  font-family: 'Instrument Serif';
}


.reviews-container {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.review-card {
  flex: 0 0 260px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  text-align: left;
}

.customer-reviews {
  padding: 50px 25px;
 
  text-align: center;
}
.customer-reviews h2 {

  font-size: 50px;
  margin-bottom: 42px;
  color: #d4af37;
  font-style: normal;
  
}

.bottom{
  background-color:#0F1D21;
    border-top: 1px solid #595959;
    box-shadow: 0 -5px 6px rgba(0, 0, 0, 0.13);
    position: relative;
    padding: 60px 0 100px;
}
.footer-wrapper {
  padding: 20px;
}

.main-nav-social {
  justify-content: center;
}

.contact-section{
  flex-direction: column;
}

.specialties-inner {
  flex-direction: column;
  text-align: center;
}

#specialty-img {
  width: 100%;
  max-width: 400px;
  height: 200px;
}

.specialties-text {
  padding: 0 20px;
}
.specialties-inner p{
  font-size: 16px;

}
}

