    :root {
      --primary: #111;
      --secondary: #fff;
      --accent-red: #E63946;
      --accent-yellow: #FFD166;
      --accent-green: #06D6A0;
      --gray-light: #f8f9fa;
      --gray-medium: #e9ecef;
    }

    /* Modern Base Styles */
    body {
      font-family: "Nunito", sans-serif;
      margin: 0;
      padding: 0;
      color: var(--primary);
      background: var(--secondary);
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 600;
    }

    /* Modern Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 90%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .navbar.scrolled {
      padding: 1rem 5%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-logo {
      width: 40px;
      transition: transform 0.3s ease;
    }

    .header-logo:hover {
      transform: rotate(-5deg);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      position: relative;
      padding: 0.5rem 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent-red);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a.active {
      color: var(--accent-red);
    }

    /* Modern Hero Section */
    .hero {
      height: 100vh;
      min-height: 800px;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../../img/IMG_5247.jpg') no-repeat center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--secondary);
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 900px;
      padding: 0 2rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease-out 0.3s forwards;
    }

    .hero h1 {
      font-size: clamp(4.5rem, 5vw, 4rem);
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero h2 {
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 300;
      margin-bottom: 3rem;
      opacity: 0.9;
    }

    .btn {
      display: inline-block;
      padding: 1.1rem 3rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 0.9rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-red {
      background: var(--accent-red);
      color: var(--secondary);
    }

    .btn-red:hover {
      background: #c1121f;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    }

    /* Modern Gallery Section */
    .gallery {
      padding: 8rem 5%;
      background: var(--secondary);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin: 0 0 1rem;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      background: var(--accent-red);
      bottom: -10px;
      left: 25%;
    }

    .gallery-categories {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .category-btn {
      padding: 0.8rem 2rem;
      border: 2px solid var(--primary);
      background: transparent;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 50px;
      font-size: 0.9rem;
    }

    .category-btn:hover {
      background: var(--primary);
      color: var(--secondary);
    }

    .category-btn.active {
      background: var(--primary);
      color: var(--secondary);
      border-color: var(--primary);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .gallery-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    /* Modern Booking Form */
    .book {
      padding: 8rem 5%;
      background: var(--gray-light);
    }

    .booking-form {
      max-width: 800px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
	  padding: 8px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      width: 100%;
      padding: 1.2rem;
      border: 1px solid var(--gray-medium);
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: var(--secondary);
    }

    .booking-form input:focus,
    .booking-form select:focus,
    .booking-form textarea:focus {
      outline: none;
      border-color: var(--accent-red);
      box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    }

    .booking-form textarea {
      min-height: 180px;
      resize: vertical;
    }

    .btn-yellow {
      background: var(--accent-yellow);
      color: var(--primary);
      border: none;
      cursor: pointer;
      grid-column: span 2;
      padding: 1.3rem;
      font-size: 1rem;
    }

    .btn-yellow:hover {
      background: #FFC107;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    }

    /* Modern Team Section */
    .team {
      padding: 8rem 5%;
      background: var(--secondary);
    }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 3 per row if space allows */
  gap: 30px;
  justify-content: center;
}

.team-member {
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  flex: 0 1 300px;
  text-align: center;
}

    .member-image {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1.5rem;
      border: 5px solid var(--accent-yellow);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .team-member:hover .member-image {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .team-member h3 {
      font-size: 1.5rem;
      margin: 0 0 0.5rem;
    }

    .team-member p {
      color: #666;
      margin: 0;
    }

    /* Modern Testimonials */
    .testimonials {
      padding: 8rem 5%;
      background: var(--gray-light);
    }

    .testimonial-slider {
      display: flex;
      gap: 2rem;
      padding: 2rem 0;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none; /* Firefox */
    }

    .testimonial-slider::-webkit-scrollbar {
      display: none; /* Chrome/Safari */
    }

    .testimonial {
      min-width: 350px;
      background: var(--secondary);
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      scroll-snap-align: start;
    }

    .testimonial p {
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .testimonial p::before {
      content: '"';
      font-size: 4rem;
      position: absolute;
      top: -1.5rem;
      left: -1rem;
      color: var(--accent-yellow);
      opacity: 0.3;
      font-family: serif;
    }

    .testimonial h4 {
      font-weight: 600;
      margin: 0;
    }

    /* Modern Footer */
    footer {
      background: var(--primary);
      color: var(--secondary);
      padding: 5rem 5% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .footer-logo .logo-icon {
      color: var(--accent-yellow);
      font-size: 2rem;
    }

    .footer-logo .logo-text {
      font-weight: 600;
      font-size: 1.2rem;
    }

    .footer-about p {
      opacity: 0.8;
      line-height: 1.8;
    }

    .footer-links h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .footer-links h3::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 2px;
      background: var(--accent-red);
      bottom: -8px;
      left: 0;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--secondary);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }

    .footer-links a:hover {
      opacity: 1;
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--secondary);
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--accent-red);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      opacity: 0.6;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .nav-links {
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        padding: 1.5rem;
      }

      .nav-links {
        margin-top: 1.5rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero {
        min-height: 600px;
      }

      .hero-content {
        padding: 0 1.5rem;
      }

      .booking-form {
        grid-template-columns: 1fr;
      }

      .form-group.full-width {
        grid-column: span 1;
      }

      .btn-yellow {
        grid-column: span 1;
      }

      .testimonial {
        min-width: 280px;
      }
    }

    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }
    }
    
    
    
    .gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-categories {
  text-align: center;
  margin-bottom: 30px;
}

.category-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.category-btn.active,
.category-btn:hover {
  background-color: #333;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}