* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    html, body {
      font-family: 'Poppins', sans-serif;
      background: #fdf6f0;
      color: #333;
      transition: background 0.3s, color 0.3s;
    }
    body::-webkit-scrollbar {
      width: 10px;
    }
    body::-webkit-scrollbar-track {
      background: #37aa99;
    }
    body::-webkit-scrollbar-thumb {
      background-color: #ffffff;
      border-radius: 0px;
      border: 2px solid #00000000;
    }
    html.dark body {
      background: #121212;
      color: #f0f0f0;
    }
    html.dark header,
    html.dark nav,
    html.dark .hero,
    html.dark .rotated-menu,
    html.dark .gallery,
    html.dark .testimonial-section,
    html.dark .contact-section,
    html.dark footer {
      background-color: #121212 !important;
      color: #ffffff !important;
    }
    html.dark .menu-card,
    html.dark .testimonial {
      background: #2c2c2c;
      color: #fff;
    }

    header {
      background: #159682;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    header h1 {
      font-size: 1.8rem;
      letter-spacing: 2px;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
    }
    nav a {
      position: relative;
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 5px 10px;
      transition: color 0.3s ease;
    }
    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background-color: white;
      transition: width 0.3s ease;
    }
    nav a:hover::after {
      width: 100%;
    }
    nav a:hover {
      color: white;
    }
    .toggle-theme {
      border: 1px solid white;
      border-radius: 5px;
      padding: 5px 10px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }
    .toggle-theme:hover {
      background: white;
      color: #37aa99;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .hamburger div {
      width: 25px;
      height: 3px;
      background: white;
      margin: 4px 0;
    }

    .hero {
      height: 90vh;
      background: url("./image/005.JPG") no-repeat center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 3rem;
      font-weight: bold;
      color: white;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
      animation: fadeIn 2s ease-out;
    }
.marquee {
  overflow: hidden;
  background: #d3c8be;
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
}

.marquee .marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-left 20s linear infinite;
  white-space: nowrap;
  
}
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee .marquee-content span {
  display: inline-block;
  padding: 0 50px;
  
  
}

@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

    .rotated-menu {
      padding: 4rem 2rem;
      margin: auto;
      max-width: 1100px;
      border-radius: 10px;
      animation: fadeIn 1.5s ease;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      justify-content: center;
    }
    .rotated-menu h2 {
      grid-column: 1 / -1;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2.5rem;
      color: #37aa99;
    }
    .menu-card {
      background: linear-gradient(135deg, #c2e7cb, #ffd180);
      padding: 1.5rem;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transform: rotate(-3deg);
      font-size: 1.1rem;
      transition: all 0.4s ease;
      text-align: left;
    }
    .menu-card:hover {
      transform: rotate(0deg) scale(1.05);
    }

    .gallery {
      text-align: center;
      padding: 4rem 2rem;
    }
    .gallery h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #37aa99;
    }
    .gallery .images {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .gallery img {
      width: 100%;
      max-width: 280px;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: zoom-in;
      margin-top: 10px;
    }
    .gallery img:hover {
      transform: scale(1.2);
      z-index: 100;
      position: relative;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .gallery .insta-link {
      margin-top: 2rem;
      display: inline-block;
      font-size: 1.1rem;
      text-decoration: none;
      color: #6f8574;
      font-weight: bold;
      transition: color 0.3s;
    }
    .gallery .insta-link:hover {
      color: #6f8574;
    }

    .testimonial-section {
      background: #edfff4;
      padding: 5rem 2rem;
      text-align: center;
    }
    .testimonial-section h2 {
      font-size: 2.8rem;
      margin-bottom: 0rem;
      color: #37aa99;
    }
    .testimonial-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
    }
    .testimonial {
      background: rgb(182, 212, 162);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      max-width: 320px;
      transition: transform 0.4s;
    }
    .testimonial:hover {
      transform: translateY(-10px);
    }
    .testimonial p {
      font-style: italic;
      font-size: 1.1rem;
    }
    .testimonial strong {
      display: block;
      margin-top: 1rem;
      color: #e65100;
      font-weight: bold;
    }

    .contact-section {
      background: #fff3e0;
      padding: 5rem 2rem;
      text-align: center;
    }
    .contact-section h2 {
      font-size: 2.8rem;
      margin-bottom: 0rem;
      color: #37aa99;
    }
    .contact-info p {
      font-size: 1.2rem;
      margin: 0.5rem 0;
    }
    iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 12px;
      margin-top: 2rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

    footer {
      background: #212121;
      color: white;
      text-align: center;
      padding: 1.5rem;
      font-size: 0.95rem;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }
      nav {
        display: none;
        flex-direction: column;
        background: #159682;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 10px;
      }
      nav.show {
        display: flex;
      }
      .testimonial-container {
        flex-direction: column;
        align-items: center;
      }
    }
    .headerLogo{
        max-height: 50px;   
    max-width: 60px;   
    width: 60%;        
    height: auto;      
    }
    .footer-link {
      color: #ffccbc;
      text-decoration: none;
    }