/* Restaurant Owner Section */
.restaurant-owner-section {
    padding: 100px 0;
    background-color: var(--color-background-secondary);
}

.restaurant-owner-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.restaurant-owner-title {
    font-size: 2.25rem; /* 36px */
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text-main);
    line-height: 1.3;
    margin-bottom: 30px;
}

.restaurant-owner-title .highlight {
    color: var(--color-primary);
}

.restaurant-owner-subtitle {
    font-size: 1.125rem; /* 18px */
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* Form Container */
.restaurant-owner-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.restaurant-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text-main);
    background-color: var(--color-white);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-control::placeholder {
    color: #A0A0A0;
}

/* Specific for select with placeholder color simulation */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 40px;
}

/* Checkboxes */
.form-checkbox-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 4px; /* Align with first line of text */
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.875rem; /* 14px */
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.checkbox-label a {
    color: #4A90E2; 
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-submit-container {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .restaurant-owner-title {
        font-size: 1.75rem;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-submit {
        width: 100%;
    }
}
