/*==================================================
            YOGA FOTO STATION
                BOOKING PAGE
===================================================*/


/*==================================================
                BOOKING MAIN
===================================================*/

.booking-page .booking-main{

    width:100%;

    min-height:100vh;

    background:#0f0f0f;

    color:#fff;

}



/*==================================================
                BOOKING SECTION
===================================================*/

.booking-page .booking-section{

    width:100%;

    padding:150px 20px 100px;

    box-sizing:border-box;

}



/*==================================================
                CONTAINER
===================================================*/

.booking-page .booking-container{

    width:100%;

    max-width:1050px;

    margin:0 auto;

}



/*==================================================
                HEADING
===================================================*/

.booking-page .booking-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;

}



.booking-page .booking-subtitle{

    display:block;

    margin-bottom:18px;

    color:#e7bd32;

    font-size:14px;

    font-weight:700;

    letter-spacing:5px;

    text-transform:uppercase;

}



.booking-page .booking-heading h1{

    margin:0 0 20px;

    color:#fff;

    font-size:48px;

    line-height:1.15;

}



.booking-page .booking-heading p{

    margin:0;

    color:#bdbdbd;

    font-size:17px;

    line-height:1.8;

}



/*==================================================
                BOOKING CARD
===================================================*/

.booking-page .booking-card{

    width:100%;

    margin-bottom:30px;

    padding:35px;

    background:#171717;

    border:1px solid rgba(255,255,255,.10);

    border-radius:22px;

    box-sizing:border-box;

}



/*==================================================
                CARD TITLE
===================================================*/

.booking-page .booking-card-title{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:30px;

    padding-bottom:20px;

    border-bottom:1px solid rgba(255,255,255,.08);

}



.booking-page .booking-card-title i{

    display:flex;

    align-items:center;

    justify-content:center;

    width:45px;

    height:45px;

    border-radius:50%;

    background:#e7bd32;

    color:#111;

    font-size:18px;

}



.booking-page .booking-card-title h2{

    margin:0;

    color:#fff;

    font-size:24px;

}



/*==================================================
                FORM GRID
===================================================*/

.booking-page .booking-grid{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:25px;

}



/*==================================================
                FORM FIELD
===================================================*/

.booking-page .booking-field{

    width:100%;

}



.booking-page .booking-field-full{

    grid-column:1 / -1;

}



/*==================================================
                LABEL
===================================================*/

.booking-page .booking-field label{

    display:block;

    margin-bottom:10px;

    color:#fff;

    font-size:16px;

    font-weight:600;

}



.booking-page .booking-field label span{

    color:#e7bd32;

}



.booking-page .booking-field label small{

    color:#888;

    font-size:12px;

    font-weight:400;

}



/*==================================================
                INPUT / SELECT / TEXTAREA
===================================================*/

.booking-page .booking-field input,

.booking-page .booking-field select,

.booking-page .booking-field textarea{

    width:100%;

    padding:15px 17px;

    border:1px solid rgba(255,255,255,.14);

    border-radius:10px;

    outline:none;

    background:#101010;

    color:#fff;

    font-family:inherit;

    font-size:15px;

    box-sizing:border-box;

    transition:.3s ease;

}



/* Focus */

.booking-page .booking-field input:focus,

.booking-page .booking-field select:focus,

.booking-page .booking-field textarea:focus{

    border-color:#e7bd32;

    box-shadow:0 0 0 3px rgba(231,189,50,.10);

}



/* Placeholder */

.booking-page .booking-field input::placeholder,

.booking-page .booking-field textarea::placeholder{

    color:#777;

}



/* Select */

.booking-page .booking-field select{

    cursor:pointer;

}



/* Disabled select */

.booking-page .booking-field select:disabled{

    color:#777;

    cursor:not-allowed;

    opacity:.8;

}



/* Textarea */

.booking-page .booking-field textarea{

    resize:vertical;

    min-height:120px;

}



/* Date */

.booking-page .booking-field input[type="date"]{

    color-scheme:dark;

}



/*==================================================
                INFORMATION NOTE
===================================================*/

.booking-page .booking-note{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin:30px 0;

    padding:18px 20px;

    border:1px solid rgba(231,189,50,.20);

    border-radius:12px;

    background:rgba(231,189,50,.05);

}



.booking-page .booking-note i{

    margin-top:3px;

    color:#e7bd32;

}



.booking-page .booking-note p{

    margin:0;

    color:#aaa;

    font-size:14px;

    line-height:1.6;

}



/*==================================================
                SUBMIT AREA
===================================================*/

.booking-page .booking-submit-area{

    text-align:center;

    margin-top:35px;

}



/*==================================================
                SUBMIT BUTTON
===================================================*/

.booking-page .booking-submit-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    max-width:500px;

    min-height:62px;

    padding:15px 30px;

    border:0;

    border-radius:50px;

    background:#25D366;

    color:#fff;

    font-family:inherit;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(37,211,102,.18);

    transition:.3s ease;

}



.booking-page .booking-submit-btn i{

    font-size:23px;

}



.booking-page .booking-submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 45px rgba(37,211,102,.28);

}



.booking-page .booking-submit-btn:active{

    transform:translateY(0);

}



/*==================================================
                SUBMIT TEXT
===================================================*/

.booking-page .booking-submit-text{

    margin:15px 0 0;

    color:#777;

    font-size:13px;

}



/*==================================================
                MOBILE
===================================================*/

@media (max-width:900px){


    .booking-page .booking-section{

        padding:120px 16px 70px;

    }


    .booking-page .booking-heading{

        margin-bottom:40px;

    }


    .booking-page .booking-heading h1{

        font-size:36px;

    }


    .booking-page .booking-heading p{

        font-size:15px;

        line-height:1.7;

    }


    .booking-page .booking-card{

        padding:25px 20px;

        border-radius:18px;

    }


    .booking-page .booking-card-title h2{

        font-size:21px;

    }


    .booking-page .booking-grid{

        grid-template-columns:1fr;

        gap:20px;

    }


    .booking-page .booking-field-full{

        grid-column:auto;

    }


    .booking-page .booking-submit-btn{

        max-width:none;

        font-size:17px;

    }

}



/*==================================================
                SMALL MOBILE
===================================================*/

@media (max-width:500px){


    .booking-page .booking-section{

        padding:105px 12px 60px;

    }


    .booking-page .booking-heading h1{

        font-size:30px;

    }


    .booking-page .booking-subtitle{

        font-size:12px;

        letter-spacing:3px;

    }


    .booking-page .booking-card{

        padding:22px 16px;

    }


    .booking-page .booking-card-title{

        gap:10px;

    }


    .booking-page .booking-card-title i{

        width:40px;

        height:40px;

    }


    .booking-page .booking-card-title h2{

        font-size:19px;

    }


    .booking-page .booking-note{

        padding:15px;

    }

}

/*==================================================
            EVENT VENUE
==================================================*/

.booking-page #eventVenue {

    width:100%;

}


/* Show normal text cursor */

.booking-page #eventVenue {

    cursor:text;

}

/*==================================================
        TERMS & CONDITIONS
==================================================*/

.booking-page .booking-terms {

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin:25px 0 10px;

    color:#fff;

}


/* Checkbox label */

.booking-page .terms-checkbox {

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    user-select:none;

}


/* Hide default checkbox */

.booking-page .terms-checkbox input {

    position:absolute;

    opacity:0;

    pointer-events:none;

}


/* Custom checkbox */

.booking-page .terms-checkbox .checkmark {

    position:relative;

    width:20px;

    height:20px;

    flex-shrink:0;

    border:1px solid rgba(255,255,255,.35);

    border-radius:5px;

    background:#101010;

    transition:.25s ease;

}


/* Checked */

.booking-page .terms-checkbox input:checked + .checkmark {

    background:#e7bd32;

    border-color:#e7bd32;

}


/* Tick */

.booking-page .terms-checkbox input:checked + .checkmark::after {

    content:"";

    position:absolute;

    left:6px;

    top:2px;

    width:5px;

    height:10px;

    border:solid #111;

    border-width:0 2px 2px 0;

    transform:rotate(45deg);

}


/* Terms text */

.booking-page .terms-text {

    color:#ccc;

    font-size:14px;

    line-height:1.5;

}


/* Terms & Conditions text */

.booking-page .terms-text strong {

    color:#e7bd32;

    font-weight:700;

}


/* Info icon */

.booking-page .terms-info {

    display:flex;

    align-items:center;

    justify-content:center;

    width:22px;

    height:22px;

    color:#e7bd32;

    font-size:17px;

    text-decoration:none;

    transition:.3s ease;

}


.booking-page .terms-info:hover {

    color:#fff;

    transform:scale(1.15);

}


/*==================================================
        TERMS MOBILE
==================================================*/

@media(max-width:500px){

    .booking-page .booking-terms {

        justify-content:flex-start;

        align-items:flex-start;

        gap:8px;

    }

    .booking-page .terms-checkbox {

        align-items:flex-start;

    }

    .booking-page .terms-text {

        font-size:13px;

    }

    .booking-page .terms-info {

        margin-top:1px;

    }

}