 body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
      scroll-behavior: smooth;
    }

    /* Header */
    .navbar {
      background: linear-gradient(to right, #1C1B4D, #FF6B6B);
      transition: all 0.3s ease;
    }
    .navbar-brand {
      color: #fff;
      font-weight: bold;
      font-size: 1.6rem;
    }
    .navbar-brand:hover {
      color: #FFD700;
    }
    .nav-link {
      color: #fff !important;
      margin-left: 15px;
    }
    .nav-link:hover {
      color: #FFD700 !important;
    }

    /* Hero Section */
.hero {
  background-image: linear-gradient(to right, rgba(28, 27, 77, 0.8), rgba(255, 107, 107, 0.8)),
                    url('https://images.unsplash.com/photo-1720842223498-7b933206062c?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fGZsaWdodHN8ZW58MHx8MHx8fDA%3D');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }
    .btn-theme {
      background-color: #FFD700;
      color: #1C1B4D;
      padding: 10px 25px;
      border: none;
      border-radius: 30px;
      transition: all 0.3s ease;
    }
    .btn-theme:hover {
      background-color: #fff;
      color: #FF6B6B;
    }

    /* Features */
    .feature-box {
      background-color: #fff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      transition: 0.3s;
    }
    .feature-box:hover {
      transform: translateY(-5px);
    }
    /*Seasonal Offer */
/* Seasonal Offers Section */
.seasonal-offers {
  background: linear-gradient(to right, #FF6B6B, #1C1B4D);
  color: #fff;
  padding: 60px 0;
}

.seasonal-offers h2 {
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.offer-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.offer-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700;
}

.offer-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

.offer-card .btn-offer {
  background-color: #FFD700;
  color: #1C1B4D;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  border: none;
}

.offer-card .btn-offer:hover {
  background-color: #fff;
  color: #1C1B4D;
}
/* Recent Bookings*/
/* Recent Bookings Section */
.recent-bookings {
  background: linear-gradient(to right, #1C1B4D, #6DD5FA);
  padding: 60px 0;
  color: #fff;
}

.recent-bookings h2 {
  font-weight: 700;
  color: #FFD700;
}

/* Booking Cards */
.booking-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px 20px;
  color: #fff;
  transition: 0.4s ease;
  border-left: 5px solid #FFD700;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.booking-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.booking-card h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.booking-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #e0e0e0;
}

.booking-card i {
  color: #FFD700;
}
/*  Contact US*/
.contact-header {
      background: linear-gradient(to right, #0E4D92, #00BFA6);
      color: white;
      padding: 60px 0;
      text-align: center;
    }
    .contact-form input, .contact-form textarea {
      border: none;
      border-bottom: 2px solid #0E4D92;
      border-radius: 0;
      background-color: transparent;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      box-shadow: none;
      border-color: #00BFA6;
    }
    .info-box {
      background-color: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      transition: all 0.3s;
    }
    .info-box:hover {
      background-color: #e9ecef;
    }
    /* Footer */
    .footer {
      background: linear-gradient(to right, #FF6B6B, #1C1B4D);
      color: #fff;
      padding: 40px 0;
      transition: all 0.3s ease;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
      color: #FFD700;
    }