/* ==========================================================================
   VLAIN Custom Styles – Inspired by clean professional legal sites
   ========================================================================== */

:root {
    --primary:    #0A2540;      /* Deep navy – main header & accents */
    --secondary:  #22C55E;      /* Green – success/CTA buttons */
    --light:      #f8f9fa;
    --dark:       #212529;
    --gray:       #6c757d;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
}

.navbar {
    background-color: var(--primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.hero {
    background: linear-gradient(rgba(10, 37, 64, 0.88), rgba(10, 37, 64, 0.88)),
                url('https://images.unsplash.com/photo-1589829545856-d10d7b8d0b5e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    min-height: 70vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5rem 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #0f3a6b;
    border-color: #0f3a6b;
}

.btn-success {
    background-color: var(--secondary);
    border-color: var(--secondary);
    font-weight: 600;
}

.btn-success:hover {
    background-color: #1ea34d;
    border-color: #1ea34d;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.text-primary   { color: var(--primary) !important; }
.bg-primary     { background-color: var(--primary) !important; }
.text-success   { color: var(--secondary) !important; }

/* Long content readability */
.long-content {
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto;
}

.long-content ol {
    padding-left: 1.8rem;
    margin-bottom: 1.8rem;
}

.long-content p {
    margin-bottom: 1.4rem;
}

/* CTA section */
.cta-section {
    padding: 4rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-section h4 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}

/* Status badges */
.status-received  { color: #0d6efd; font-weight: 600; }
.status-review    { color: #ffc107; font-weight: 600; }
.status-responded { color: #198754; font-weight: 600; }

footer {
    background: var(--primary);
    color: white;
}
/* Auth Pages - Split Layout */
.bg-image-auth {
    background: linear-gradient(rgba(10, 37, 64, 0.75), rgba(10, 37, 64, 0.75)),
                url('..assets/images/auth-side.jpg') center/cover no-repeat;
    min-height: 100vh;
}

.overlay {
    background: rgba(10, 37, 64, 0.4); /* extra overlay for text readability */
}

.auth-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .bg-image-auth {
        min-height: 40vh; /* smaller on mobile */
    }
}
/* ──────────────────────────────────────────────
   Register Page – Clean Split Layout
────────────────────────────────────────────── */
.bg-image-register {
    background: linear-gradient(rgba(10, 37, 64, 0.80), rgba(10, 37, 64, 0.80)),
                url('../images/auth-register-bg.jpg') center/cover no-repeat fixed;
    background-attachment: scroll; /* better mobile performance */
}

.overlay {
    background: rgba(34, 197, 94, 0.10); /* subtle green tint matching theme */
}

@media (min-width: 992px) {
    .bg-image-register {
        background-attachment: fixed;
    }
}

.auth-form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 2.5rem;
}

.form-control-lg, .form-select-lg {
    border-radius: 0.6rem;
}

.btn-lg {
    border-radius: 0.6rem;
    font-size: 1.1rem;
}
.bg-image-register {
    background: linear-gradient(rgba(10, 37, 64, 0.80), rgba(10, 37, 64, 0.80)),
                url('../images/auth-register-bg.jpg') center/cover no-repeat;
    min-height: 100%; /* ensures it fills the column */
}

.overlay {
    background: rgba(0, 0, 0, 0.35); /* adjust opacity for text readability */
    pointer-events: none;
}

/* Better mobile experience */
@media (max-width: 991.98px) {
    .bg-image-register {
        min-height: 40vh;           /* smaller image area on mobile */
        background-attachment: scroll;
    }
}
.bg-image-register {
    background: linear-gradient(rgba(10, 37, 64, 0.75), rgba(10, 37, 64, 0.75)),
                url('../images/auth-register-bg.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    background: rgba(10, 37, 64, 0.4);  /* darker for contrast – adjust lower if needed */
}