.special-img {
    position: relative;
    text-align: center;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

#guest, #parking {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

#guest > div,
#parking > div {
    display: flex;
    flex: 1 1 48%;
}

.card-special {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.card-special .card-body {
    flex-grow: 1;
}

.card-special {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
}

.testimonial-section {
    width: 100%;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #111;
    color: #fff;
}

.testimonial-text {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    color: #CCA772;
    font-size: 50px;
    margin-top: -1rem;
    margin-right: 1rem;
}

.testimonial {
    font-style: italic;
    font-size: 16px;
}

.author {
    color: #CCA772;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    margin-top: 30px;
    font-size: 16px;
    margin-left: 2.5rem;
}

.location {
    color: #CCA772;
    font-family: "Playfair Display", serif;
    margin-left: 20px;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reservation-section {
    background-color: #f2b632;
    text-align: center;
    padding: 30px 0;
}

.reservation-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.reservation-btn:hover {
    background-color: white;
    color: #655233;
}

.special-img {
    position: relative;
    width: 99.5vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    text-align: center;
}

.special-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

@media (min-width: 320px) and (max-width: 700px) {
    .testimonial-container {
        display: block;
    }
    .guest {
        height: 15.8rem!important;
    }
    .overlay-text{
        display: none;
    }
    .special-img{
        margin-top: 8.5rem;
    }
}