/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf2f4;
    color: #333;
}

header {
    background-color: #e9a7c2;
    color: white;
    padding: 1.5em 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hero Section */
#hero {
    background: url('image/2.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

/* Add a semi-transparent overlay to improve contrast */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: -1;
}

/* Hero Content Styling */
.hero-content h1 {
    font-size: 3.5em; /* Make the title slightly smaller but bold */
    font-weight: 700;
    margin-bottom: 0.5em;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7); /* Adding a shadow for better contrast */
}

.hero-content p {
    font-size: 1.4em; /* Slightly larger text for better readability */
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); /* Adding a shadow to the description for contrast */
}

/* CTA Button Styling */
.cta-button {
    background-color: #ff85a2; /* Same pink color as the background */
    padding: 12px 28px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e07391;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 2em 0;
    text-align: center;
}

#about h2 {
    color: #f49ac2;
    font-size: 2.5em;
    margin-bottom: 1em;
}

#about p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Special Offer Section */
#special-offer {
    background-color: #fff;
    padding: 3em 1.5em;
    text-align: center;
}

#special-offer h2 {
    color: #f49ac2;
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

#special-offer p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Section */
#testimonials {
    background-color: #fff;
    padding: 2em 1.5em;
    text-align: center;
}

#testimonials h2 {
    color: #f49ac2;
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

.testimonial {
    margin-bottom: 2em;
    font-size: 1.2em;
    font-style: italic;
}

.testimonial p {
    font-weight: bold;
}

/* Booking Form */
/* Booking Form */
#booking {
    background-color: #f9e1e6;
    padding: 3em 1.5em;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.5em;
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    font-size: 1.1em;
}

form button {
    background-color: #f49ac2;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e07b9c;
}

.contact-phone {
    margin-top: 1.5em;
    font-size: 1.2em;
}

.contact-phone a {
    color: #f49ac2;
    font-weight: 600;
    text-decoration: none;
}

.contact-phone a:hover {
    color: #e07b9c;
}


/* Footer Section */
footer {
    background-color: #f49ac2;
    color: white;
    text-align: center;
    padding: 1em 0;
    font-size: 1.1em;
}

/* Social Links Styling */
footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: white;
    font-size: 1.2em;
    margin: 0 15px;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #e07b9c;
}
