*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color:white;
    background-image: url("image/pattern.png");
  background-repeat: repeat;  /* Pattern will tile */
  background-size: 200px;      /* Keeps the natural size of pattern */
  background-attachment: fixed; /
}

.bg-image {
    background: url("image/Chef\ Plating\ Dish.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Dark overlay */
  .bg-image::before {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.5);
    z-index: 1;
  }

  /* Content inside hero */
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 1rem;
    margin-top: 10px;
  }

  /* Scroll arrow */
  .scroll-down {
    position: absolute;
    bottom: 20px;
    font-size: 2rem;
    color: #fff;
    animation: bounce 2s infinite;
    z-index: 2;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }


  /* about */
  .about-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; /* similar size */
    line-height: 1.6;
    color: #000;
  }
  .about-text em, 
  .about-text strong {
    font-style: italic;
    font-weight: 600;
  }
  .section-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #555;
  }

  /* service */
  .card {
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
  }
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  }
  .card img {
    max-height: 400px;
    object-fit: cover;
  }

  /* contact */
  .contact {
    position: relative;
    color: #fff;
    z-index: 1;
  }

  .contact .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Black transparent overlay */
    z-index: 0;
  }

  .contact .row {
    z-index: 1;
    position: relative;
  }
 #navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* Navbar when scrolled */



/* Container */
.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
#navbar.scrolled .logo {
  color: black;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li {
  position: relative;
}
.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
  padding: 5px 0;
}

/* Link hover effect */
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: brown;
  transition: width 0.3s;
}
.nav-link:hover {
  color: brown;
}
.nav-link:hover::before {
  width: 100%;
}

/* Change link color after scroll */
#navbar.scrolled .nav-link {
  color: black;
}
#navbar.scrolled .nav-link:hover {
  color: orange;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
#navbar.scrolled .hamburger {
  color: black;
}
.menu-item {
  position: relative;
  overflow: hidden;
}

.menu-item img {
  transition: transform 0.3s ease;
}

.menu-item:hover img {
  transform: scale(1.1); /* zoom effect */
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.menu-item:hover .menu-overlay {
  opacity: 1;
}
.about-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make sure it takes at least the full viewport height */
    padding: 40px;
    box-sizing: border-box;
}

.about-section {
    background-color: #f9f9f9; /* Light background for the content area */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 40px;
    max-width: 1200px; /* Adjust as needed */
    width: 100%;
    box-sizing: border-box;
}

.text-content {
    flex: 1;
    padding-right: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color:brown; /* Match the color in the example */
}

.discover {
    color: brown;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 15px;
}

.title {
    font-size: 2.5em;
    color: #222;
    margin-bottom: 15px;
}

.subtitle {
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.description {
    line-height: 1.6;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-block;
    background-color: brown;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: rgb(173, 19, 19);
}

.image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.main-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.main-image img,
.top-image img,
.bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.side-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .about-section {
        flex-direction: column;
    }
    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .image-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .main-image {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .side-images {
        flex-direction: row;
        gap: 10px;
    }
    .top-image, .bottom-image {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .about-page {
        padding: 20px;
    }
    .about-section {
        padding: 20px;
    }
    .title {
        font-size: 2em;
    }
    .section-header {
        margin-bottom: 15px;
    }
    .description {
        margin-bottom: 20px;
    }
    .discover {
        font-size: 12px;
        padding: 0 10px;
    }
}
.menu-section, .reservation-section {
    padding: 100px 0;
}
.menu-category {
    margin-bottom: 80px;
}
.menu-item {
    margin-bottom: 30px;
    position: relative;
    border-bottom: 1px dashed #444;
    padding-bottom: 20px;
}

.menu-item h5 {
    font-family: var(--font-primary);
    color: var(--light-color);
    font-size: 1.4rem;
}

.menu-price {
    font-family: var(--font-secondary);
    color: var(--brand-color);
    font-weight: bold;
}

.menu-description {
    color: #615c5c;
}

.badge-recommended {
    position: absolute;
    top: -10px;
    left: 0;
    background-color: var(--brand-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
.youtube-section {
    text-align: center;
    background: #ff0000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.youtube-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.youtube-section p {
    font-size: 16px;
    margin-bottom: 30px;
}

.youtube-card {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 15px;
}

.youtube-card .circle {
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
}

.youtube-card .info h3 {
    margin: 0;
    font-size: 18px;
}

.youtube-card .info p {
    margin: 0;
    font-size: 12px;
    color: #555;
}

.youtube-card .buttons a {
    text-decoration: none;
    padding: 5px 15px;
    margin-left: 5px;
    border-radius: 5px;
    font-weight: bold;
}

.subscribe-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF0000; /* YouTube red */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth animation */
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    text-transform: uppercase;
}
  .subscribe-btn:hover {
    background-color: #cc0000; /* Darker red */
    transform: scale(1.1);      /* Slightly bigger */
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.bell-btn {
    background: #f1f1f1;
    color: #000;
}
.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes the div circular */
    overflow: hidden;   /* Ensures image stays inside the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #000; /* Optional border */
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure image covers the circle without distortion */
}
.footer-section {
    position: relative;
    color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .footer-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay (70% black) for readability */
    z-index: 1;
  }
  .footer-section .content-row {
    position: relative;
    z-index: 2; /* Content on top of overlay */
  }
  .footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-section a:hover {
    color: #FFC107; /* Gold color on hover */
  }
  .footer-section .social-icons img {
    margin-right: 15px;
    transition: opacity 0.3s ease;
  }
  .footer-section .social-icons a:hover img {
    opacity: 0.8;
  }
  .footer-section .map-container {
      height: 100%;
      min-height: 250px; /* Ensures map is not too small on mobile */
  }
  .footer-section iframe {
      border-radius: 8px; /* Optional: adds rounded corners to the map */
  }
  #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: brown;
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      transition: background 0.3s ease, transform 0.3s ease;
      animation: float 2s infinite ease-in-out;
    }

    /* Hover effect */
    #scrollTopBtn:hover {
      background-color: darkred;
      transform: scale(1.1) rotate(10deg);
    }

    /* Floating animation */
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }
    @media (max-width: 450px) {
  /* Stack menu vertically */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    flex-direction: column;
    width: 180px;
    text-align: right;
    padding: 15px;
    display: none; /* hidden by default */
  }

  /* When active (on hamburger click) */
  .nav-links.active {
    display: flex;
  }

  /* Links in mobile view */
  .nav-link {
    color: black;
    padding: 10px 0;
  }

  /* Hamburger visible */
  .hamburger {
    display: block;
    font-size: 26px;
    color: black;
  }

  /* Logo resize for smaller screens */
  .nav-container img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 370px) {

    /* --- General Body & Typography --- */
    body {
        /* Slightly reduce the base font size if necessary */
        font-size: 14px; 
    }

    /* --- Hero Section --- */
    .hero-content h1 {
        font-size: 2rem; /* Was 2.5rem, reduce to prevent awkward wrapping */
    }

    .hero-content p {
        font-size: 0.9rem; /* Slightly smaller for better spacing */
    }

    /* --- Navbar --- */
    #navbar {
        padding: 10px 15px; /* Reduce horizontal padding */
    }

    .logo {
        font-size: 20px; /* Slightly smaller logo text */
    }
    
    /* --- About Section --- */
    .about-page, .about-section {
        padding: 15px; /* Reduce padding to give content more space */
    }

    .title {
        font-size: 1.8em; /* Further reduce the main title size */
    }

    .read-more-btn {
        padding: 10px 20px; /* Make the button a bit smaller */
        font-size: 0.9rem;
    }

    /* --- Menu Section --- */
    .menu-item h5 {
        font-size: 1.2rem; /* Reduce menu item title size */
    }

    .menu-description {
        font-size: 0.85rem; /* Make description text smaller to fit */
    }
    
    /* --- YouTube / Call to Action Section --- */
    .youtube-section h2 {
        font-size: 26px; /* Reduce heading size */
    }

    .youtube-card {
        /* Stack the content vertically if it overflows */
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
        border-radius: 20px; /* Adjust radius for new shape */
    }
    
    .youtube-card .buttons {
        display: flex;
        justify-content: center;
    }
    
    .subscribe-btn {
        padding: 10px 20px; /* Reduce button padding to prevent it from being too wide */
    }


    /* --- Footer --- */
    .footer-section .content-row {
        text-align: center; /* Center-align footer content for a cleaner look */
    }

    .footer-section .col-md-4 {
        margin-bottom: 25px; /* Add some space between stacked footer columns */
    }
    
    .footer-section h4 {
        font-size: 1.1rem; /* Reduce footer heading size */
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem; /* Reduce general footer text size */
    }


    /* --- Scroll-to-Top Button --- */
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        right: 15px;   /* Move it a bit from the edge */
        bottom: 15px;
    }
}   
.gallery-container {
    width: 100%;
    min-height: 100vh;
    margin-top: -150px;
}

/* Hero Section */
.gallery-hero-section {
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.gallery-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #b8860b;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.9;
}

.gallery-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 60px;
    color: brown;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.gallery-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-hero-image:hover {
    transform: translateY(-5px);
}

.gallery-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Carousel Section */
.carousel-section {
    margin-top: -50px;
    padding: 0px 20px 80px;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.carousel-slide {
    flex: 0 0 220px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.05);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.carousel-slide:hover .slide-overlay {
    opacity: 1;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0px;
}

.next-btn {
    right: 0px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: brown;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero-section {
        padding: 60px 15px 40px;
    }
    
    .gallery-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .gallery-main-title {
        margin-bottom: 40px;
    }
    
    .gallery-hero-image img {
        height: 300px;
    }
    
    .carousel-section {
        padding: 60px 15px;
    }
    
    .carousel-slide {
        flex: 0 0 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 0px;
    }
    
    .next-btn {
        right: 0px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 280px;
    }
    
    .carousel-slide img {
        height: 160px;
    }
}