/* Acetaie Aperte Event Manager - Form Styles */

.acetaie-form {
    margin-top: 20px;
}

.acetaie-form .form-group {
    margin-bottom: 25px;
}

.acetaie-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
}

.acetaie-form select,
.acetaie-form input[type="text"],
.acetaie-form input[type="email"],
.acetaie-form input[type="tel"],
.acetaie-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
}

.acetaie-form select:focus,
.acetaie-form input:focus,
.acetaie-form textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 
        0 0 0 4px rgba(78, 205, 196, 0.2),
        0 2px 10px rgba(78, 205, 196, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.acetaie-form select {
    cursor: pointer;
    background-color: white;
}

.acetaie-form textarea {
    resize: vertical;
    min-height: 80px;
}

.acetaie-form .price {
    font-weight: 700;
    color: #27ae60;
    margin-left: 15px;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.2));
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
    border: 1px solid rgba(39, 174, 96, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-book {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #CDA434 0%, #B8941F 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(205, 164, 52, 0.4);
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-book:hover::before {
    left: 100%;
}

.btn-book:hover {
    background: linear-gradient(135deg, #B8941F 0%, #A67D1A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 164, 52, 0.5);
}

.btn-book:active {
    transform: translateY(0);
}

.btn-book:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Hover effects per i form fields */
.acetaie-form select:hover,
.acetaie-form input:hover,
.acetaie-form textarea:hover {
    border-color: #bdc3c7;
}

/* Stili per campi obbligatori */
.acetaie-form label:after {
    content: " *";
    color: #e74c3c;
    font-weight: bold;
}

.acetaie-form label[for="telefono_"]:after,
.acetaie-form label[for*="telefono"]:after,
.acetaie-form label[for="note_"]:after,
.acetaie-form label[for*="note"]:after {
    content: "";
}