

.navbar.bg-light {
    background-color: #9c9763 !important;
    .form-control {
      border-radius: 4.25rem;
    }
}

.navbar {
    padding: 0.5rem 1rem; 
}

.navbar-nav .nav-link {
    padding: 0.25rem 0.5rem; 
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.line {
    width: 100px;
    height: 2px;
    background-color: burlywood;
    margin: auto;
}

.img-fluid {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 6px;
}

.d-flex i {
    font-size: 25px;
    color: #9c9763;
    cursor: pointer;
}

.cover-container {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.cover-text {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .col-md-8 {
        position: static;
        width: 100%;
    }

    .col-md-4 {
        width: 100%;
    }

    .img-fluid {
        height: auto;
        width: 100%;
    }

    .card-body {
        text-align: center;
    }

    .d-flex {
        justify-content: center;
    }
}

.footer {
    background-color: #9c9763;
}

.footer-content h2 {
    color: #fff;
}

.footer-content p,
.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer hr {
    background-color: #fff;
}