body {
    background-color: #F7F5F1; /* F7F5F1 OR EEEBE2 https://colorswall.com/palette/294993 */
    color: #4A4A4A; /* Deep charcoal */
    font-family: 'Arial', sans-serif;
}
/* Full Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('img/misty-forest.webp') no-repeat center center/cover;
}

/* Green Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(178, 190, 181, 0.65); /* Muted Sage Green */
}

/* Navbar - Transparent & Fixed on Top */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent !important;
    box-shadow: none;
}

.navbar-brand img {
    height: 40px; /* Adjust logo size */
}

/* Background only for the desktop navbar links */
@media (min-width: 992px) { /* Ensures this only affects large screens */
    .navbar-nav {
        background: rgba(0, 0, 0, 0.05); /* Dark semi-transparent */
        backdrop-filter: blur(5px); /* Optional soft blur effect */
        border-radius: 8px; /* Soft rounded edges */
        padding: 10px 20px; /* Adds spacing inside */
        display: inline-flex; /* Ensures background wraps only links */
    }
}

/* Desktop navbar links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent white for a soft effect */
}

/* Hover effect for desktop links */
.navbar-nav .nav-link:hover {
    color: white; /* Full white on hover */
}

/* Off-Canvas (Mobile Menu) Styles */
@media (max-width: 991px) {
    .offcanvas {
        background: rgba(255, 255, 255, 0.5) !important; /* 80% opacity */
        backdrop-filter: blur(10px); /* Adds soft blur effect for readability */
    }

    .offcanvas .nav-link {
        color: #333333 !important; /* Dark text for mobile links */
        font-weight: 500; /* Optional: makes links slightly bolder */
    }

    .offcanvas .nav-link:hover {
        color: black !important; /* Full black on hover */
    }
}


/* Off-Canvas Menu Styling */
.offcanvas {
    background: rgba(255, 255, 255, 0.8); /* Light transparent white for readability */
}

/* Remove border from hamburger button */
.navbar-toggler {
    border: none !important; /* Removes the border */
    outline: none !important; /* Ensures no focus outline appears */
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hero Content Centered */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* White text for contrast */
    max-width: 600px;
    z-index: 5;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Button Styling */
.hero-content .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
}

.hero-content .btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Arrow Positioned at Bottom */
.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: white;
    text-decoration: none;
    animation: bounce 2s infinite;
}

/* Arrow Animation (Subtle Bounce) */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Change Color on Hover */
.scroll-arrow:hover {
    color: #ddd;
}


.section {
    padding: 60px 20px;
    text-align: center;
}
.footer {
    text-align: center;
    padding: 20px;
    background-color: #544f4a; /* Soft muted green */
    color: #fff;
}
/* Full-Width Background Sections */
.full-width-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 1;
    overflow: hidden;
}

/* Overlay - Now Inside the Section (Proper Opacity) */
.full-width-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better readability */
    z-index: 0; /* Ensures it's behind the text */
}

/* Text Stays on Top of Overlay */
.full-width-section .content {
    position: relative;
    z-index: 1; /* Keeps text above the overlay */
}

/* Adjustments for Each Section */
.section-babbling-brook {
    background-image: url('img/zen-stack-lg.webp');
}

.section-creek-scene {
    background-image: url('img/ocean-scene.webp');
}

/* White Background Section */
.promo-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

/* Individual Promo Box Styling */
.promo-box {
    background: #EEEBE2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Button Styling */
.promo-box .btn {
    margin-top: 10px;
}