/* ===== REGISTER PAGE ===== */
.register-page {
    min-height: 100vh;
    background: var(--white);
    font-family: var(--font-body);
}

/* Top Strip */
.top-strip {
    height: 8px;
    background: #0f1a2e;
}

/* Header */
.reg-header {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.reg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reg-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.reg-logo-img {
    height: 140px;
    width: auto;
    display: block;
}

.reg-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.reg-nav ul li a {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    transition: color 0.2s;
    text-decoration: none;
}

.reg-nav ul li a:hover {
    color: #000;
}

.reg-nav ul li a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

.reg-cart {
    margin-left: 16px;
    display: flex;
    align-items: center;
}

.reg-cart:hover { opacity: 0.6; }

/* Hero Banner */
.reg-hero {
    background: #0f1a2e;
    padding: 64px 0;
    text-align: center;
}

.reg-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.reg-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* FAQ Section */
.reg-faq {
    padding: 72px 0 56px;
    background: var(--white);
}

.reg-faq-container {
    max-width: 700px;
}

.reg-faq h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.reg-faq-item {
    margin-bottom: 36px;
}

.reg-faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.reg-faq-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Registration Form */
.reg-form-section {
    padding: 64px 0 80px;
    background: var(--white);
}

.reg-form-container {
    max-width: 580px;
}

.reg-form-container h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 36px;
}

/* Form Fields */
.field {
    margin-bottom: 20px;
}

.field > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.field input:focus {
    border-color: #999;
}

.field input::placeholder {
    color: #bbb;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.check-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #222;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Submit Button */
.submit-field {
    text-align: center;
    margin-top: 32px;
}

.btn-submit {
    display: inline-block;
    background: #111;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Mobile Menu */
.register-page .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.register-page .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    border-radius: 1px;
    transition: all 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .reg-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid #eee;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 16px 20px;
        z-index: 999;
        flex-direction: column;
    }

    .reg-nav.open {
        display: flex;
    }

    .reg-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .reg-nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .reg-cart {
        margin-left: 0;
        padding: 12px 0;
    }

    .register-page .mobile-menu-btn {
        display: flex;
    }

    .reg-header {
        position: relative;
    }

    .reg-hero h1 {
        font-size: 32px;
    }

    .reg-faq h2 {
        font-size: 28px;
    }

    .reg-form-container h2 {
        font-size: 26px;
    }
}

/* Registration success banner */
.reg-success-banner {
    background: var(--off-white);
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 24px;
}
.reg-success-banner strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.reg-success-banner p {
    color: var(--text-body);
    margin: 0;
    font-size: 0.92rem;
}
