/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

main {
    padding: 20px;
}

footer {
    background-color: #007BFF;
    color: white;
    padding: 10px;
    text-align: center;
}

/* Packages Section */
.packages {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin-top: 20px;
}

.package {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    width: 30%;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    width: 300px;
    height: auto;
    border: 1px solid #ddd;
}

/* Form */
form {
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
    max-height: 700px;
}

.slides img {
    width: 100%;
    display: none;
}

/* Content Section */
.intro {
    padding: 40px;
    text-align: center;
    background-color: #f4f4f4;
}

.amenities {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.amenities h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.amenity {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.amenity img {
    width: 60px;
    margin-bottom: 15px;
}

.amenity h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #4CAF50;
}

.amenity p {
    font-size: 0.95em;
    color: #666;
}

.amenity:hover {
    transform: translateY(-5px);
}


.clientele {
    padding: 40px;
    text-align: center;
    background-color: #f4f4f4;
}

.clientele .clients img {
    width: 150px;
    margin: 0 15px;
}

.contact-us-container {
    text-align: center;
    margin: 30px 0;
}

.contact-us-button {
    display: inline-block;
    background-color: #4A90E2; /* Blue color */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-us-button:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
}
