/**
* 2007-2026 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2026 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.pdv-soiree-form {
    max-width: 850px;
    margin: 40px auto;
}


.pdv-soiree-form form {
    background: var(--white, #ffffff);
    padding: 45px;
    border-radius: 18px;
    border: 1px solid rgba(243, 168, 47, 0.25);
    box-shadow: 0 15px 50px rgba(0, 9, 21, 0.12);
    position: relative;
}

.pdv-soiree-form h1 {
    margin: 0 0 35px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.1;
    color: var(--primary, #000915) !important;
    font-family: "Italianno", cursive !important;
    text-align: center;
}

.pdv-soiree-form h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--secondary, #f3a82f);
    border-radius: 10px;
    margin: 15px auto 0;
}


.pdv-soiree-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 35px;
}


.pdv-soiree-form legend {
    display: block;
    width: 100%;
    padding: 0 0 12px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(243, 168, 47, 0.25);
    color: var(--primary, #000915);
    font-size: 20px;
    font-weight: 800;
}

.pdv-soiree-form .form-group {
    margin-bottom: 22px;
}

.pdv-soiree-form label {
    display: block;
    color: var(--primary, #000915);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

.pdv-soiree-form .required {
    color: var(--secondary, #f3a82f);
}

.pdv-soiree-form .form-control {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    background: var(--light, #f8f8f8);
    border: 2px solid #eeeeee;
    border-radius: 9px;
    color: var(--primary, #000915);
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.pdv-soiree-form .form-control:focus {
    background: var(--white, #ffffff);
    border-color: var(--secondary, #f3a82f)!important;
    box-shadow:
        0 0 0 4px rgba(243, 168, 47, 0.12);
    outline: none;
}

.pdv-soiree-form .form-control::placeholder {
    color: #999;
}

.pdv-soiree-form select.form-control {
    cursor: pointer;
    appearance: auto;
}

.pdv-soiree-form .form-text {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.pdv-soiree-form #ages-enfants-container {
    padding: 25px;
    background: rgba(243, 168, 47, 0.05);
    border: 1px solid rgba(243, 168, 47, 0.20);
    border-radius: 12px;
}

.pdv-soiree-form #ages-enfants-container > p {
    margin: 0 0 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.pdv-soiree-form #ages-enfants-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

.pdv-soiree-form button[type="submit"] {
    display: block;
    width: 100%;
    min-height: 58px;
    margin-top: 15px;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    background: var(--secondary, #f3a82f)!important;
    color: var(--primary, #000915)!important;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(243, 168, 47, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.pdv-soiree-form button[type="submit"]:hover {
    background: var(--gold-light, #ffc85c)!important;
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(243, 168, 47, 0.35);
}


.pdv-soiree-form .alert-danger {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #fff2f2;
    border: 1px solid #f0b5b5;
    border-radius: 9px;
    color: #d93025;
    font-size: 14px;
}

.pdv-soiree-form .alert-danger p {
    margin: 0 0 5px;
}

.pdv-soiree-form .alert-danger p:last-child {
    margin-bottom: 0;
}


.pdv-soiree-form .alert-success {
    padding: 25px;
    background: #f2faf4;
    border: 1px solid #b8ddc0;
    border-radius: 12px;
    color: #245c2f;
}

.pdv-soiree-form .alert-success h3 {
    margin-top: 0;
    color: #245c2f;
}


.pdv-soiree-form .form-control.is-invalid,
.pdv-soiree-form .form-control:invalid:focus {
    border-color: #d93025;
}

.pdv-soiree-form form::after {
    content: "★  Places limitées  ★";
    display: block;
    margin-top: 25px;
    text-align: center;
    color: var(--secondary, #f3a82f);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .pdv-soiree-form {
        margin: 25px 10px;
    }
    .pdv-soiree-form form {
        padding: 30px 20px;

        border-radius: 14px;
    }
    .pdv-soiree-form h1 {
        margin-bottom: 30px;

        font-size: 38px;
    }
    .pdv-soiree-form legend {
        font-size: 18px;

        margin-bottom: 20px;
    }
    .pdv-soiree-form label {
        font-size: 14px;

        margin-bottom: 7px;
    }
    .pdv-soiree-form .form-control {
        min-height: 50px;

        padding: 13px 14px;

        font-size: 16px;
    }
    .pdv-soiree-form #ages-enfants-fields {
        grid-template-columns: 1fr;
    }
    .pdv-soiree-form #ages-enfants-container {
        padding: 20px;
    }
    .pdv-soiree-form button[type="submit"] {
        min-height: 55px;

        font-size: 15px;
    }
}