.divider-text:before,
.divider-text:after{
    color: white;
    content: "";
    flex: 1;
    border-bottom: 1px solid #555;
    margin: auto 0.25rem;
    box-shadow: 0 -2px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in-out;
}

.promo-img {
    width: 90vw;
    height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: zoom-in;
}

    .promo-img.expanded {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        cursor: zoom-out;
    }

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 24px;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.promo-fullscreen-img {
    width: 90vw;
    height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #937432;
    --bs-btn-border-color: #937432;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #937432;
    --bs-btn-hover-border-color: #937432;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #937432;
    --bs-btn-active-border-color: #937432;
    --bs-btn-disabled-bg: #937432;
    --bs-btn-disabled-border-color: #937432;
    --bs-btn-focus-shadow-rgb: 147, 116, 50;
}

.offcanvas.offcanvas-end {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 250px;
    max-width: 80vw;
    transition: transform 0.4s ease;
}


.offcanvas-backdrop.show {
    transition: opacity 0.4s ease;
}

.nav-link.light-white {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.nav-link.light-white:hover {
    color: rgba(255, 255, 255, 0.85);
}

.custom-dropdown {
    background-color: #937432;
    border: none !important;
    box-shadow: none !important;
}

.custom-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    background-color: transparent;
}
.custom-dropdown .dropdown-item:hover {
    color: rgba(255, 255, 255, 0.85);
    background-color: transparent; /* Keep it clean */
}

#mainNavbar {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    min-height: auto;
}


#mainNavbar .btn {
    padding: 0.25rem 0.5rem;
}
