/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b130a; /* Deep Jungle Green fallback */
    color: #fff;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Dimmed Wildlife Background for Sections */
.wildlife-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('http://heavenvalley.sariskaresort.in/images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
}

/* Hero Carousel Styling */
.carousel-item {
    height: 90vh;
    min-height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(60%);
}

.carousel-caption {
    bottom: 30%;
    z-index: 2;
}

/* Floating Buttons */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: 0.3s ease;
}

.btn-whatsapp { background: #25d366; }
.btn-booking { background: #ff523b; }
.btn-float:hover { transform: scale(1.15); color: #fff; }

/* Image Hover Effects */
.img-hover {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.img-hover img {
    transition: transform 0.5s ease;
}

.img-hover:hover img {
    transform: scale(1.1);
}

.section-padding { padding: 100px 0; }