/* ==========================================================================
   GangCity - Landing, Login & Registratie pagina's
   Bouwt voort op login.css (geimporteerd)
   ========================================================================== */
@import url('login.css');

/* ==========================================================================
   Fix: achtergrond vult hele pagina
   ========================================================================== */
html, body {
    background-size: cover;
    background-attachment: fixed;
}

/* ==========================================================================
   Fix: page-wrapper (registratie, wachtwoord vergeten) krijgt blur overlay
   ========================================================================== */
.page-wrapper {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 2rem;
}

/* ==========================================================================
   Fix: message-box verticale ruimte onder
   ========================================================================== */
.message-box {
    margin-bottom: 1rem;
}

/* ==========================================================================
   Video achtergrond
   ========================================================================== */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

/* ==========================================================================
   Info panel (linker paneel op landing)
   ========================================================================== */
.info-panel h1 {
    font-size: 1.8rem;
    margin: 0 0 0.25rem 0;
    color: #fff;
    letter-spacing: 0.5px;
}

.info-panel h2 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #A9D2D5;
    font-weight: normal;
}

.info-panel .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.info-panel .feature-list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-panel .feature-list li:last-child {
    border-bottom: none;
}

.info-panel .feature-list li span {
    margin-right: 0.5rem;
}

.info-panel .cta-text {
    font-size: 1rem;
    color: #f0b15f;
    font-weight: bold;
    margin-top: 1rem;
}

.info-panel .stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-panel .stat {
    text-align: center;
}

.info-panel .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0b15f;
    display: block;
}

.info-panel .stat-label {
    font-size: 0.8rem;
    color: #999;
}

/* ==========================================================================
   Login formulier aanpassingen
   ========================================================================== */
.login-wrapper h2 {
    color: #f0b15f;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}

/* Honeypot veld - verborgen voor gebruikers, zichtbaar voor bots */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ==========================================================================
   Registratie formulier
   ========================================================================== */
.register-wrapper {
    max-width: 480px;
    width: 100%;
    justify-content: flex-start;
    align-self: center;
    text-align: left;
}

.form-group {
    margin-bottom: 0.6rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.2rem;
    color: #ccc;
    font-size: 0.8rem;
}

.form-group .login-input {
    margin-bottom: 0;
    padding: 0.6rem 0.75rem;
}

.form-group select.login-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f0b15f;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-row label {
    margin: 0;
    display: inline;
    font-size: 0.85rem;
    color: #ccc;
    cursor: pointer;
}

.checkbox-row a {
    color: #A9D2D5;
    text-decoration: underline;
}

.checkbox-row a:hover {
    color: #fff;
}

/* ==========================================================================
   Validatie feedback
   ========================================================================== */
.validation-feedback {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.15rem;
    min-height: 0;
}

.validation-feedback.valid {
    color: #2ecc71;
}

.validation-feedback.invalid {
    color: #e74c3c;
}

.login-input.input-valid {
    border-color: #2ecc71 !important;
}

.login-input.input-invalid {
    border-color: #e74c3c !important;
}

/* ==========================================================================
   Wachtwoord vergeten & IP-lock pagina's
   ========================================================================== */
.reset-wrapper {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.reset-wrapper h2 {
    color: #f0b15f;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ==========================================================================
   Registreer knop op de landing pagina
   ========================================================================== */
.btn-register {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: #f0b15f;
    font-weight: bold;
    border: 2px solid #f0b15f;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
    margin-top: 0.5rem;
    box-sizing: border-box;
    font-family: verdana;
}

.btn-register:hover {
    background: #f0b15f;
    color: #111;
}

/* ==========================================================================
   Footer aanpassingen
   ========================================================================== */
.footer-box {
    max-width: 1100px;
    font-size: 0.8rem;
}

.footer-box p {
    margin: 0.25rem 0;
}

/* ==========================================================================
   Mobile responsive
   ========================================================================== */
@media (max-width: 900px) {
    .info-panel {
        display: none;
    }

    .overlay {
        padding: 1rem;
    }

    .content-container {
        gap: 1rem;
    }

    .login-wrapper,
    .register-wrapper,
    .reset-wrapper {
        max-width: 100%;
    }

    .footer-box {
        max-width: 100%;
    }

    #background-video {
        display: none;
    }

    body {
        background: #121212;
    }
}

/* ==========================================================================
   FAQ pagina
   ========================================================================== */
.faq-wrapper {
    max-width: 700px;
    width: 100%;
    justify-content: flex-start;
    align-self: center;
    text-align: left;
}

.faq-list {
    margin: 1rem 0;
}

.faq-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: #f0b15f;
    font-size: 0.95rem;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
}

.faq-answer {
    color: #aaa;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Legal pagina's (privacy, AV, etc.)
   ========================================================================== */
.legal-wrapper {
    max-width: 700px;
    width: 100%;
    justify-content: flex-start;
    align-self: center;
    text-align: left;
}

.legal-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: #f0b15f;
    font-size: 0.95rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
}

.legal-section p {
    color: #aaa;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    color: #aaa;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0.25rem 0 0.5rem 0;
    padding-left: 1.25rem;
}

.legal-section li {
    margin-bottom: 0.25rem;
}

.legal-section strong {
    color: #ccc;
}

@media (max-width: 480px) {
    .overlay {
        padding: 0.75rem;
    }

    .panel-box {
        padding: 1rem;
        border-radius: 8px;
    }

    .login-input {
        font-size: 16px; /* voorkomt zoom op iOS */
    }

    .submit-btn,
    .btn-register {
        font-size: 16px;
        padding: 0.85rem;
    }
}
