/* ============================================================
   restaurant-custom.css
   Custom styles for client user pages (registration, login, profile)
   ============================================================ */

/* Form Labels */
.client-form-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}

.client-form-helper {
    font-size: 13px;
    color: #888;
}

.client-form-helper a {
    color: #c5a47e;
    text-decoration: underline;
}

.client-form-helper a:hover {
    color: #fff;
}

/* Alert Messages */
.client-alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 3px solid;
    font-size: 14px;
    line-height: 1.6;
}

.client-alert p {
    margin-bottom: 4px;
}

.client-alert p:last-child {
    margin-bottom: 0;
}

.client-alert-success {
    background: rgba(76, 175, 80, 0.08);
    border-color: #4caf50;
    color: #a8d5aa;
}

.client-alert-success i {
    margin-right: 6px;
    color: #4caf50;
}

.client-alert-success a {
    color: #c5a47e;
    font-weight: 600;
    text-decoration: underline;
}

.client-alert-error {
    background: rgba(244, 67, 54, 0.08);
    border-color: #f44336;
    color: #e8a0a0;
}

/* Login Page Divider */
.client-login-divider {
    text-align: center;
    position: relative;
}

.client-login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.client-login-divider span {
    position: relative;
    background: #1a1a2e;
    padding: 0 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.client-toggle-code-login {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    border-bottom: 1px dashed #555;
    padding-bottom: 1px;
    transition: color 0.3s;
}

.client-toggle-code-login:hover {
    color: #c5a47e;
    border-color: #c5a47e;
}

/* Profile Card */
.client-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
    margin-bottom: 30px;
}

.client-profile-section {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.client-profile-section:last-child {
    border-bottom: none;
}

.client-profile-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a47e;
    margin-bottom: 18px;
}

.client-profile-section-title i {
    margin-right: 8px;
    font-size: 13px;
}

.client-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

@media (max-width: 576px) {
    .client-profile-grid {
        grid-template-columns: 1fr;
    }

    .client-profile-section {
        padding: 20px;
    }
}

.client-profile-field {
    display: flex;
    flex-direction: column;
}

.client-profile-label {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 3px;
}

.client-profile-value {
    font-size: 15px;
    color: #ddd;
}

/* Profile Actions */
.client-profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
