/* ========================================
   CUSTOM RESERVATION BUTTON
   Unique classes to avoid CSS conflicts
   ======================================== */

/* Button Wrapper */
.reserve-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

/* Main Button Styles */
.reserve-action-btn {
    max-width: 380px;
    width: 100%;
    display: inline-block;
    text-align: center;

    /* Visual Styling */
    background-color: var(--gt-theme);
    color: #ffffff;
    border: none;
    border-radius: 4px;

    /* Typography */
    font-family: "Gilda Display", serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1;

    /* Spacing */
    padding: 15px 25px;

    /* Animation Setup */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 500ms;

    /* Interactions */
    cursor: pointer;
    outline: none;
}

/* Diagonal Swipe Effect - Before Pseudo Element */
.reserve-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 130%;
    height: 0%;
    margin: auto;
    transform: rotate(-45deg);
    background-color: var(--gt-header);
    transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Hover State - Expand Background */
.reserve-action-btn:hover::before {
    height: 550%;
}

/* Button Text */
.reserve-btn-text {
    position: relative;
    z-index: 2;
    line-height: 1;
    color: #ffffff;
}

/* Hover: White Text */
.reserve-action-btn:hover .reserve-btn-text {
    color: #ffffff;
}

/* Active/Focus States */
.reserve-action-btn:active {
    transform: scale(0.98);
}

.reserve-action-btn:focus {
    outline: 2px solid rgba(183, 142, 90, 0.5);
    outline-offset: 2px;
}

/* ======================================== 
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 991px) {
    .reserve-action-btn {
        max-width: 100%;
        padding: 20px 40px;
    }

    .reserve-btn-wrapper {
        margin-top: 30px;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .reserve-action-btn {
        padding: 18px 35px;
        font-size: 15px;
    }

    .reserve-btn-wrapper {
        margin-top: 25px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .reserve-action-btn {
        max-width: 100%;
        padding: 16px 30px;
        font-size: 14px;
    }

    .reserve-btn-wrapper {
        margin-top: 20px;
    }
}