 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: #f5f5f5;
     color: #333;
     line-height: 1.6;
 }

 /* Header Styles */
 header {
     background-color: #1a3a5f;
     color: white;
     padding: 1rem 0;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .logo {
     font-size: 28px;
     font-weight: 700;
 }

 .logo span {
     color: #f8c15c;
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-left: 20px;
 }

 nav ul li a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }

 nav ul li a:hover {
     color: #f8c15c;
 }

 nav ul li a.active {
     color: #f8c15c;
     font-weight: 700;
 }

 /* Hero Section */
 .hero {
     background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/500');
     background-size: cover;
     background-position: center;
     height: 300px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 .hero h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 600px;
 }

 /* Amenities Sections */
 .amenities-container {
     max-width: 1200px;
     margin: 50px auto;
     padding: 0 20px;
 }

 .section-title {
     text-align: center;
     color: #1a3a5f;
     margin-bottom: 40px;
     font-size: 2.2rem;
 }

 .amenities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }

 .amenity-card {
     background-color: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s;
 }

 .amenity-card:hover {
     transform: translateY(-5px);
 }

 .amenity-img {
     height: 200px;
     background-size: cover;
     background-position: center;
 }

 .amenity-details {
     padding: 20px;
 }

 .amenity-details h3 {
     color: #1a3a5f;
     margin-bottom: 10px;
     font-size: 1.5rem;
 }

 .amenity-details p {
     margin-bottom: 15px;
     color: #555;
 }

 .hours {
     font-style: italic;
     color: #777;
     font-size: 0.9rem;
     margin-top: 15px;
 }

 .category-title {
     color: #1a3a5f;
     margin: 30px 0 20px;
     font-size: 1.8rem;
     border-bottom: 2px solid #f8c15c;
     padding-bottom: 10px;
 }

 /* Book Now Button */
 .book-now-container {
     text-align: center;
     margin: 50px 0;
 }

 .book-now-btn {
     display: inline-block;
     background-color: #1a3a5f;
     color: white;
     text-decoration: none;
     padding: 15px 30px;
     border-radius: 4px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: background-color 0.3s;
 }

 .book-now-btn:hover {
     background-color: #0f2642;
 }

 /* Footer Styles */
 footer {
     background-color: #1a3a5f;
     color: white;
     padding: 40px 0;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
 }

 .footer-container h3 {
     font-size: 1.2rem;
     margin-bottom: 1rem;
     color: #f8c15c;
 }

 .footer-container ul {
     list-style: none;
 }

 .footer-container ul li {
     margin-bottom: 8px;
 }

 .footer-container ul li a {
     color: white;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-container ul li a:hover {
     color: #f8c15c;
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     color: #ddd;
     font-size: 0.9rem;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .header-container {
         flex-direction: column;
         text-align: center;
     }

     nav ul {
         margin-top: 20px;
         flex-wrap: wrap;
         justify-content: center;
     }

     nav ul li {
         margin: 5px 10px;
     }

     .hero h1 {
         font-size: 2rem;
     }

     .hero {
         height: 250px;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .category-title {
         font-size: 1.5rem;
     }
 }

 /* Hamburger icon */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
}
