/* Custom Fonts (Optional, but makes it look professional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Light grey background */
}

/* --- Hero Section Styling --- */
.hero-section {
    position: relative;
    height: 70vh; /* Set height for impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-image: url('images/sri_lanka_background.jpg'); /* Replace with a high-res image */
    background-size: cover;
    background-position: center;
}

/* Adding an overlay to make text readable */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

/* Booking Widget Styling */
.booking-widget {
    margin-top: 3rem;
    background-color: rgba(255, 255, 255, 0.95) !important; /* Slightly transparent white */
}

.booking-widget .nav-link {
    color: #007bff; /* Blue color for tabs */
    font-weight: 600;
}

.booking-widget .nav-link.active {
    background-color: #007bff;
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000; /* Ensure it's on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
}