body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 35%;
}

    .carousel-caption h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        max-width: 600px;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.navbar-nav .nav-link {
    color: #bfa359 !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #8f792e !important;
    }

.navbar-brand {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.navbar-collapse {
    justify-content: center;
}


.navbar-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4); /* semi-transparente */
    z-index: 1000;
}

.bottom-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    color: white;
    padding: 10px 0;
}

 .bottom-bar span::before {
  content: "● ";
  color: red;
}

.feature-showcase {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.feature-box {
    text-align: center;
    margin-bottom: 40px;
}

.feature-box i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-box p {
    font-size: 16px;
    color: #555;
}






