* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #000;
    background-color: #000;
  
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      
    }
    body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
  
  
  /* Navigation Bar */
  
  
  /* Navbar Base Styles */
  .logo img {
  height: 80px; /* Adjust as needed */
  width: auto;
  display: block;
}
.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 7.7rem;
    margin-right: 10rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #FFD700; /* Yellow hover */
  }
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 2rem; /* Reduce vertical padding */
    z-index: 1000;
    height: 78px; /* Set a consistent height */
  }
  .hamburger {
    display: none;
    position: absolute;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: #5C0000;
      position: absolute;
      top: 75px;
      right: -150px;
      padding: 20px;
      border-radius: 5px;
      gap:10px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  }
  
  /* Logo Image */
  .logo img {
    height: 120px; /* Increase logo size */
    width: auto;
    display: block;
    margin-left: 6.5em;

  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem; /* Space for navbar */
  }
  
  .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .carousel-slide.active {
    opacity: 1;
  }
  
  .hero-text h1,
  .hero-text h2,
  .hero-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    color: #f1d5d5;
    font-size: 18px;
    margin-bottom: 10px;
    
  }
  
  .hero:hover .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-text-bg {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(3px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  /* Make the box fade in together with text */
  .hero:hover .hero-text-bg {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }
  
  .delay-1 {
    transition-delay: 0.2s;
  }
  .delay-2 {
    transition-delay: 0.4s;
  }
  .delay-3 {
    transition-delay: 0.6s;
  }
  .vision-mission-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 60px 20px;
    background-image: url('Images/four-03.jpg'); /* replace with your actual image path */
    background-size: cover;
    background-position: center;
    flex-wrap: wrap;
    align-items: stretch;
  }
  
  .vision-box,
  .mission-box {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 400px;
    width: 100%;
    font-family: 'Urbanist', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: justify;
  }
  
  .vision-box h2,
  .mission-box h2 {
    color: #5C0000; /* Theme red */
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .vision-box p,
  .mission-box ul {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }
  
  .mission-box ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  /* Section Background */
.info-section {
  background-image: url('./Images/beige background-01.png');
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Overlay (if needed) */
/* .info-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.3);
  z-index: 0;
} */

.info-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.info-content h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400; /* light */
  color: #5C0000;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.info-content h2 {
  font-family: 'Urbanist', sans-serif;
  font-style: italic;
  font-weight: 200; /* thin */
  color: #424242;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.info-content p {
  font-family: 'Urbanist', sans-serif;
  font-weight: 200; /* thin */
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.book-now {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #5C0000;
  color: white;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600; /* semi bold */
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-now:hover {
  background-color: #d5b500;
}

/* Fade Line-by-Line Animation */
.fade-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }
.delay-4 { transition-delay: 1.2s; }
.delay-5 { transition-delay: 1.5s; }

.fade-line.show {
  opacity: 1;
  transform: translateY(0);
}
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;    
  padding: 5rem 6rem;             
  background-color: #5C0000;
  color: white;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  max-width: 600px;
  animation: fadeInLeft 1s ease forwards;
  padding-right: 1rem;
  margin-top: 0;
}

.about-heading {
  font-family: 'Urbanist', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  margin-top: 0;
}

.about-text p {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #fff;
}

.read-more {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: #fff;
  color: #5C0000;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.read-more:hover {
  background-color: #f1d5d5;
}

.about-image-container {
  flex: 1 1 40%;
  position: relative;
  max-width: 300px;
  animation: fadeInRight 1s ease forwards;
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: 2rem;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  animation: fadeInImage 1.5s ease forwards 1s; /* slow and smooth */
}

.dragon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  object-fit: cover;
  border-radius: 2rem;
  opacity: 0;
  animation: fadeInDragon 1.8s ease forwards 1.5s;
  pointer-events: none;
}

/* Animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeInDragon {
  0% {
    opacity: 0;
    transform: scale(0.7) translateX(40px);
  }
  100% {
    opacity: 0.3;
    transform: scale(1) translateX(0);
  }
}
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image-container {
    margin-top: 2rem;
    max-width: 90%; /* For better scaling on mobile */
  }
}
.scroll-fade {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.scroll-fade.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.hero .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.hero .fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-text-bg {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.hero-text-bg.show {
  opacity: 1;
  transform: translateY(0);
}
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,500;1,400&display=swap');

.signature-section {
  background-image: url('./Images/background fish-01.png');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}



.signature-heading h2 {
  font-family: 'Urbanist', sans-serif;
  font-style: italic;
  color: #5C0000;
  font-size: 36px;
  margin-bottom: 60px;
}

/* Dishes Grid */
.signature-dishes {
  display: flex;
  justify-content: center;
  gap: 68px;
  flex-wrap: wrap;
}

/* Individual Dish */
.dish {
  position: relative;
  width: 280px;
  transition: transform 0.4s ease, opacity 1s ease;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.dish:nth-child(1) { animation-delay: 0.2s; }
.dish:nth-child(2) { animation-delay: 0.6s; }
.dish:nth-child(3) { animation-delay: 1s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Zoom on hover */
.dish img {
  width: 100%;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.dish:hover img {
  transform: scale(1.08);
}

/* Tooltip styling */
.dish::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d5b500;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: 'Urbanist', sans-serif;
}

.dish:hover::after {
  opacity: 1;
}

/* Dish Text Styling */
.dish-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  margin: 16px 0 4px;
  color: #5C0000;
  font-size: 18px;
}

.dish-desc {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  color: #050504;
  font-size: 15px;
  margin: 0;
}

/* Order Button */
.order-now {
  margin-top: 70px;
}

.order-btn {
  background-color: #5C0000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.order-btn:hover {
  background-color: #d5b500;
}
#location {
  background-image: url('Images/Location background-01-02-01.png'); /* 🖼 Your background image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  position: relative;
  overflow: hidden;

}

#location::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  
  z-index: 0;
}

.location-content,
.location-image {
  position: relative;
  z-index: 1;
}

.location-content h2 {
  font-size: 2.5rem;
  font-style: italic;
  color: #5C0000;
  font-weight: 600px;
  margin-bottom: 1.5rem;
}

.location-content p {
  font-size: 1.1rem;
  color: #3a2f2f;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.location-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #F5A623;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.location-btn:hover {
  background-color: #5C0000;
}

.location-image img {
  max-width: 200px;
  margin-top: 3rem;
  
}
.flavor-left-align {
  background-image: url('Images/background\ about04-03.png'); /* replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 80px 20px;
  color: #5C0000;
}

.flavor-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
}

.flavor-container h2 {
  font-size: 2em;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 700;
}

.flavor-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
  max-width: 600px;
  font-weight: 500;
}

.flavor-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn.yellow {
  background-color: #FBBF24;
  color: #5C0000;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.yellow:hover {
  background-color: #e0a800;
}

/* Animation styles */
.fade-line {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-line.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.footer {
  background-color: #5C0000; /* theme red */
  color: #fff;
  padding: 40px 20px 0; /* Remove bottom padding */
  margin: 0;
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

 



/* Container spacing inside */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 1px; /* space before beige footer */
}

/* Logo */
.footer-logo img {
  width: 240px;
  
}

/* Nav */
.footer-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 15px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 520;
  
}
.footer-nav a {
  padding: 4px 0; /* adds vertical padding inside each item */
}

/* Social icons */
.visit-now {
  font-style: italic;
  color: #F5A623; 
  margin-top: 30px;
  margin-left:20px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;

}
.footer-social .icons a img {
  width: 80px;
  margin-right: 10px;
}

/* WhatsApp line */

.footer-social .whatsapp {
  margin-top: -20px;
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #fff;
}

.footer-social .whatsapp-icon {
  width:80px;
  margin-right: 10px;
}

/* Copyright beige area */
.footer-bottom {
  background-color: #f5f0e1; /* beige */
  text-align: center;
  padding: 12px;
  padding-left: 10px;

  margin: 0;
}

.footer-bottom p {
  color: #5C0000; /* theme red */
  font-size: 13px;
  margin: 0;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    align-items: center;
  }
}


/* Responsive text and image scaling */
img {
  max-width: 100%;
  height: auto;
}

h1, p {
  font-size: clamp(1rem, 2vw, 2rem); /* scales based on screen */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}