body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Top Bar */
.top-bar {
    background-color: #007bff;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #d1eaff; /* A lighter, glossy blue for hover */
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

/* Hero Slider */
.hero-slider .item img {
    height: 500px;
    object-fit: cover;
}

.hero-slider .item {
    position: relative;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.slider-content p {
    font-size: 1.5rem;
}

/* Hotel Listings */
.hotel-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Animation Helper */
.wow {
    opacity: 0;
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px; /* Adjust based on navbar height + desired offset */
}
