/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('a3.jpg'); /* Replace with your luxury hotel/restaurant image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
	/* color: #555 */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
	color: white
}

.hero p {
    font-size: .5rem;
    font-weight: 100;
    margin-bottom: 30px;
}

.hero .cta-btn {
    padding: 15px 30px;
    background-color: #007BFF;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.hero .cta-btn:hover {
    background-color: #0056b3;
}

/* Service Section */
.services {
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    background-color: #fff;
    margin-top: -20px;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.services .service {
    width: 30%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.services .service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.services h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

.services p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
p a.cta-link {
    color: #007BFF; /* Link color (bright blue) */
    font-weight: bold;
    text-decoration: none;  /* Removes default underline */
    transition: color 0.3s ease;
}

p a.cta-link:hover {
    color: #0056b3; /* Darker blue color on hover */
    text-decoration: underline; /* Adds underline on hover */
}
/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 50px 10%;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonials .testimonial {
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

.testimonials p {
    color: #777;
    font-size: 1rem;
    font-weight: 600;
}

/* Footer Section */
/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .social-media, .terms {
    width: 30%;
    padding: 10px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
	color: white;
}

.contact-info p {
    font-size: 1rem;
    margin: 5px 0;
}

.contact-info a {
    color: white; /* Accent color for links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-media a {
    color: white;
    margin: 10px 0;
    display: block;
    text-decoration: none;
}

.social-media a:hover {
    text-decoration: underline;
}

.terms ul {
    list-style: none;
    padding: 0;
}

.terms li {
    margin-bottom: 10px;
}

.terms a {
    color: white;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .social-media, .terms {
        width: 100%;
        margin-bottom: 20px;
    }
}

