/*
 Theme Name:   Divi Child
 Theme URI:    https://www.elegantthemes.com/
 Description:  Child theme for Divi
 Author:       Pronet Design
 Author URI:   https://pronetdesign.ro
 Template:     Divi
 Version:      1.0.0
 Text Domain:  divi-child
*/

/* Adaugă CSS personalizat aici */
/* Stilizare generală */
.rsvp-form {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Titluri */
.rsvp-form h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Grupuri de elemente */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: #f1f3f5;
    border-color: #ced4da;
}

.radio-option input[type="radio"] {
    margin-right: 1rem;
    accent-color: #3498db;
}

/* Câmpuri de input */
input[type="text"], select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #3498db;
    outline: none;
}

/* Buton de trimitere */
.submit-btn {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Secțiune copii */
.copii-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.copii-option {
    text-align: center;
    padding: 0.8rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copii-option.selected, .copii-option:hover {
    background: #3498db;
    color: white;
    border-color: #2980b9;
}

/* Mesaje */
.mesaj-trist {
    color: #e74c3c;
    background: #fadbd8;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #f5b7b1;
    margin-bottom: 1.5rem;
}

.multumim-text {
    color: #2ecc71;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: bold;
    display: none;
}

.rsvp-alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.rsvp-alert.success {
    background: #d4edda;
    color: #155724;
}

.rsvp-alert.error {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive design */
@media (max-width: 768px) {
    .rsvp-form {
        padding: 1rem;
        margin: 1rem;
    }

    .copii-section {
        grid-template-columns: repeat(3, 1fr);
    }
}