/* ================================
   WRAPPER
================================ */

.luxury-booking-wrapper {

    max-width: 1200px;

    margin: 70px auto;

    padding: 55px;

    background: #fff;

    border-radius: 22px;

}

/* ================================
   TOP SECTION
================================ */

.luxury-booking-top {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-bottom: 70px;

}

/* ================================
   CALENDAR
================================ */

.luxury-calendar-nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

}

.luxury-month {

    font-size: 26px;

    font-weight: 500;

    color: #111;

}

.luxury-nav {

    cursor: pointer;

    font-size: 24px;

    color: #888;

    transition: .3s ease;

}

.luxury-nav:hover {
    color: #111;
}

.luxury-calendar-grid {

    display: grid;

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

    gap: 14px;

}

/* WEEK DAYS */

.luxury-weekdays {

    display: grid;

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

    margin-bottom: 16px;

    gap: 14px;

}

.luxury-weekdays span {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    font-weight: 700;

    color: #666;

    text-transform: uppercase;

    letter-spacing: 1px;

}
body.page main
{
    max-width: 1300px;
}
body.page main>h3
{
  color: #0a0a0a !important;
}
body.page main p
{
    color: #0a0a0a !important;
}

.luxury-day {

    width: 48px;
    height: 48px;
    color: black;
    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 14px;

    transition: .25s ease;

}

.luxury-day:hover,
.luxury-day.active {

    background: #2f3c56;

    color: #fff;

}

.luxury-day.disabled {

    opacity: .18;
    color: black;
    pointer-events: none;

}

/* ================================
   TIMES
================================ */

.luxury-times {

    display: grid;

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

    gap: 16px;

}

.luxury-time {

    height: 52px;

    border: 1px solid #e7e7e7;

    background: #fff;

    border-radius: 8px;

    font-size: 14px;

    cursor: pointer;

    transition: .25s ease;

}

.luxury-time:hover,
.luxury-time.active {

    background: #2f3c56;

    border-color: #2f3c56;

    color: #fff;

}

.luxury-time.disabled {

    opacity: .28;

    pointer-events: none;

}

/* ================================
   SECTION TITLES
================================ */

.luxury-section-title {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #111;

}

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

.luxury-form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 26px 40px;

}

/* ================================
   GROUP
================================ */

.luxury-group {

    position: relative;

}

.luxury-group.full {
    grid-column: 1/3;
}

/* ================================
   LABELS
================================ */

.luxury-group label {

    display: block;

    margin-bottom: 10px;

    font-size: 14px;

    font-weight: 600;

    color: #111;

}

/* ================================
   INPUTS
================================ */

.luxury-group input,
.luxury-group textarea,
.luxury-group select {

    width: 100%;

    border: none;

    background: #f5f5f5;

    border-radius: 6px;

    padding: 16px 18px;

    min-height: 10px;

    font-size: 15px;

    color: #111;

    transition: .25s ease;

    appearance: none;

}

/* ================================
   SELECT ARROW
================================ */

.luxury-group select {
    background-repeat: no-repeat;

    background-position: right 16px center;

    background-size: 16px;

    padding-right: 45px;

}

/* ================================
   TEXTAREA
================================ */

.luxury-group textarea {

    min-height: 120px;

    resize: none;

    padding-top: 16px;

}

/* ================================
   PLACEHOLDER
================================ */

.luxury-group input::placeholder,
.luxury-group textarea::placeholder {

    color: #999;

}

/* ================================
   FOCUS
================================ */

.luxury-group input:focus,
.luxury-group textarea:focus,
.luxury-group select:focus {

    outline: none;

    background: #fff;

    box-shadow: 0 0 0 1px #2f3c56;

}

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

.luxury-submit {

    margin-top: 45px;

    width: 240px;

    height: 56px;

    border: none;

    background: #2f3c56;

    color: #fff;

    border-radius: 6px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;

}

.luxury-submit:hover {

    opacity: .92;

    transform: translateY(-1px);

}

/* ================================
   RESPONSE
================================ */

.luxury-response {

    margin-top: 20px;

    font-size: 14px;

    font-weight: 600;

    color: #c0392b;

}

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


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

@media(max-width:768px) {

    .luxury-booking-wrapper {

        padding: 20px;

        margin: 25px 12px;

        border-radius: 18px;

    }

    /* TOP SECTION */

    .luxury-booking-top {

        grid-template-columns: 1fr;

        gap: 45px;

        margin-bottom: 45px;

    }

    /* SECTION TITLES */

    .luxury-section-title {

        font-size: 13px;

        margin-bottom: 22px;

        letter-spacing: 1px;

    }

    /* CALENDAR */

    .luxury-calendar-nav {

        margin-bottom: 20px;

    }

    .luxury-month {

        font-size: 20px;

        text-align: center;

    }

    .luxury-nav {

        font-size: 20px;

        width: 34px;

        height: 34px;

        display: flex;

        align-items: center;

        justify-content: center;

    }

    .luxury-weekdays {

        gap: 8px;

        margin-bottom: 10px;

    }

    .luxury-weekdays span {

        font-size: 11px;

    }

    .luxury-calendar-grid {

        gap: 8px;

    }

    .luxury-day,
    .luxury-empty {

        width: 100%;

        aspect-ratio: 1/1;

        height: auto;

        min-height: 42px;

        font-size: 13px;

    }

    /* TIME BUTTONS */

    .luxury-times {

        grid-template-columns: 1fr 1fr;

        gap: 10px;

    }

    .luxury-time {

        height: 48px;

        font-size: 13px;

    }

    /* FORM GRID */

    .luxury-form-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .luxury-group.full {

        grid-column: auto;

    }

    /* INPUTS */

    .luxury-group input,
    .luxury-group textarea,
    .luxury-group select {

        padding: 15px;

        font-size: 16px;

        border-radius: 10px;

    }

    .luxury-group textarea {

        min-height: 110px;

    }

    /* BUTTON */

    .luxury-submit {

        width: 100%;

        height: 54px;

        margin-top: 35px;

        font-size: 15px;

        border-radius: 10px;

    }

}

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

@media(max-width:480px) {

    .luxury-booking-wrapper {

        padding: 16px;

        margin: 15px 8px;

    }

    .luxury-times {

        grid-template-columns: 1fr;

    }

    .luxury-day,
    .luxury-empty {

        min-height: 38px;

        font-size: 12px;

    }

    .luxury-month {

        font-size: 18px;

    }

}

/* EMPTY GRID CELLS */

.luxury-empty {

    width: 48px;

    height: 48px;

}

/* =========================================
   MOBILE CALENDAR FIX
========================================= */

@media(max-width:768px) {

    .luxury-booking-wrapper {

        padding: 14px;

        margin: 15px 8px;

        overflow: hidden;

    }

    /* TOP */

    .luxury-booking-top {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    /* CALENDAR */

    .luxury-calendar-grid,
    .luxury-weekdays {

        display: grid;

        grid-template-columns: repeat(7, minmax(0, 1fr));

        gap: 3px;

        width: 100%;

    }

    /* DAYS */

    .luxury-day,
    .luxury-empty {

        width: 100%;

        min-width: 0;

        height: 40px;

        border-radius: 8px;

        font-size: 12px;

        display: flex;

        align-items: center;

        justify-content: center;

        box-sizing: border-box;

    }

    /* WEEK DAYS */

    .luxury-weekdays span {

        font-size: 10px;

        width: 100%;

        min-width: 0;

    }

    /* MONTH */

    .luxury-month {

        font-size: 18px;

        text-align: center;

    }

    /* NAV */

    .luxury-nav {

        width: 30px;

        height: 30px;

        font-size: 14px;

    }

}