/* ==============================================
   ZHOOMVERSE ENHANCED FORMS & NAVBAR STYLES
   ============================================== */

/* ---------- NAVBAR (original dark theme) ---------- */
.navbar {
    background: rgba(22, 33, 62, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a3e;
    z-index: 1100 !important;
}

/* ---------- MENU TOGGLE BUTTON (WHITE ICON) ---------- */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
}

.navbar-toggler .bi-list,
.navbar-toggler i {
    color: #ffffff !important;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

/* ---------- FORM FIELD VISIBILITY ---------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea,
select,
.form-control,
.form-input,
.form-select {
    background: rgba(255, 255, 255, 0.13) !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border: 2px solid #3a3a5e !important;
    padding: 0.85rem 1rem !important;
    font-size: 1.05rem !important;
    border-radius: 10px !important;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400 !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus,
.form-input:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #e94560 !important;
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.3) !important;
    color: #ffffff !important;
    outline: none;
}

.form-label,
label {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.3rem;
}

.text-muted,
small,
.form-text,
.field-hint {
    color: rgba(255, 255, 255, 0.7) !important;
}

input:disabled,
textarea:disabled,
.form-control:disabled {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #3a3a5e !important;
    color: #ffffff !important;
    cursor: pointer;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #3a3a5e !important;
}

.form-check-input:checked {
    background-color: #e94560 !important;
    border-color: #e94560 !important;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.alert-danger,
.error-alert {
    background: rgba(220, 53, 69, 0.25) !important;
    border: 2px solid rgba(220, 53, 69, 0.5) !important;
    color: #ff6b6b !important;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2) !important;
    border: 2px solid rgba(40, 167, 69, 0.4) !important;
    color: #5ddb92 !important;
}

/* ---------- SLOGAN – always visible, never overlaps ---------- */
.brand-slogan {
    position: absolute;
    top: 100%;                /* sits just below the anchor's content */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    line-height: 1;
    margin-top: 2px;         /* tiny gap from the brand text */
    z-index: 1102;           /* above navbar but below dropdowns */
}

/* Make the anchor respect the slogan's size so it's not clipped */
.brand-logo-\[class\] {
    overflow: visible !important;
}

/* On mobile, keep the slogan visible and centred */
@media (max-width: 991px) {
    .brand-slogan {
        position: relative;   /* fallback to flow if absolute causes issues */
        top: auto;
        left: auto;
        transform: none;
        margin-top: 0;
        display: block;
        text-align: center;
        width: 100%;
        font-size: 0.65rem;
    }
}