/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  /* Body Styling */
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff9f5;
    color: #333;
  }
  
  /* Navbar */
  .navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .navbar-brand img {
    height: 50px;
  }
  .nav-link {
    font-weight: 600;
    color: #333;
  }
  .nav-link:hover {
    color: #ff69b4;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  /* Sections */
  section {
    padding: 80px 0;
  }
  .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: bold;
    color: #ff69b4;
  }
  
  /* Services */
  .service-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
    background: #fff;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  /* Gallery */
  .gallery img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.4s ease;
  }
  .gallery img:hover {
    transform: scale(1.03);
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 30px 0;
  }
  footer a {
    color: #ff69b4;
    text-decoration: none;
  }
  
  /* Buttons */
  .btn-custom {
    background-color: #ff69b4;
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
  }
  .btn-custom:hover {
    background-color: #e754a3;
    color: white;
  }
  
  /* Booking Form */
  form input, form select, form textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
  }
  
  /* Contact */
  .contact-info {
    background-color: #fef2f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
  }
  
  /* AOS Animations */
  [data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
  }