﻿.body {
    position: relative;
    background-image: url('pattern-chakras-alt-color.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    padding-top: 400px; /* Adjust based on your navbar height */
}

.double-divider {
    position: relative;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
}

    .double-divider::before,
    .double-divider::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
    }

    .double-divider::before {
        top: 0;
        background-color: #c8a97e; /* Light brown line */
        height: 1px;
    }

    .double-divider::after {
        bottom: 0;
        background-color: #7a4f2c; /* Darker brown line */
        height: 2px;
    }

.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('pattern-chakras-alt-color.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05; /* Only the background is faded */
    z-index: 0;
}


.navbar > .container-fluid {
    position: relative;
    z-index: 1;
}



.navbar-custom {
    background-color: #e47a14;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.1rem;
}

.navbar-logo img {
    height: 65px;
}



@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .menu-group {
        display: flex;
        gap: 15px;
    }
}
