/* Rest Section Styles */
.section-rest {
    padding: 3rem 1rem;
    /* py-12 px-4 */
    background-color: #fff;
    font-family: inherit;
}

.section-rest .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Main Grid */
.rest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* gap-8 */
    align-items: center;
}

/* Image Column */
.rest-image-col {
    position: relative;
    order: 2;
}

.rest-image-wrapper {
    border-radius: 1rem;
    /* rounded-2xl */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
}

.rest-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.rest-badge {
    position: absolute;
    bottom: -1rem;
    /* -bottom-4 */
    right: -1rem;
    /* -right-4 */
    background-color: #233D7C;
    color: #fff;
    padding: 1rem;
    /* p-4 */
    border-radius: 1rem;
    /* rounded-2xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    z-index: 10;
}

.rest-badge h3 {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.rest-badge p {
    font-size: 0.75rem;
    /* text-xs */
    margin: 0;
    margin-top: 0.25rem;
}

/* Content Column */
.rest-content-col {
    order: 1;
}

.rest-title {
    font-size: 1.875rem;
    /* text-3xl */
    color: #233D7C;
    margin-bottom: 0.75rem;
    /* mb-3 */
    padding-left: 0.5rem;
    /* px-2 */
    padding-right: 0.5rem;
    font-weight: 600;
}

.rest-subtitle {
    font-size: 1.125rem;
    /* text-lg */
    color: #A77D5C;
    margin-bottom: 1rem;
    /* mb-4 */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.rest-description {
    font-size: 1rem;
    /* text-base */
    color: #5A6D8F;
    margin-bottom: 1.5rem;
    /* mb-6 */
    line-height: 1.625;
    /* leading-relaxed */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Features Grid */
.rest-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    /* gap-3 */
}

.rest-feature-card {
    background-color: #F4EDE5;
    padding: 1rem;
    /* p-4 */
    border-radius: 0.75rem;
    /* rounded-xl */
    transition: background-color 0.3s ease;
}

.rest-feature-card:hover {
    background-color: #D5EAD6;
}

.rest-feature-icon {
    color: #233D7C;
    margin-bottom: 0.5rem;
    /* mb-2 */
    width: 32px;
    height: 32px;
}

.rest-feature-title {
    color: #233D7C;
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 600;
    margin: 0;
}

/* Responsive: SM (Small Screens approx 640px+) */
@media (min-width: 640px) {
    .section-rest {
        padding-top: 4rem;
        /* sm:py-16 */
        padding-bottom: 4rem;
    }

    .section-rest .container {
        padding-left: 1.5rem;
        /* sm:px-6 */
        padding-right: 1.5rem;
    }

    .rest-grid {
        gap: 3rem;
        /* sm:gap-12 */
    }

    .rest-image {
        height: 400px;
        /* sm:h-[400px] */
    }

    .rest-badge {
        bottom: -1.5rem;
        /* sm:-bottom-6 */
        right: -1.5rem;
        /* sm:-right-6 */
        padding: 1.5rem;
        /* sm:p-6 */
    }

    .rest-badge h3 {
        font-size: 1.875rem;
        /* sm:text-3xl */
    }

    .rest-badge p {
        font-size: 0.875rem;
        /* sm:text-sm */
    }

    .rest-title {
        font-size: 2.25rem;
        /* sm:text-4xl */
        margin-bottom: 1rem;
        /* sm:mb-4 */
    }

    .rest-subtitle {
        font-size: 1.25rem;
        /* sm:text-xl */
        margin-bottom: 1.5rem;
        /* sm:mb-6 */
    }

    .rest-description {
        font-size: 1.125rem;
        /* sm:text-lg */
        margin-bottom: 2rem;
        /* sm:mb-8 */
    }

    .rest-features {
        grid-template-columns: repeat(2, 1fr);
        /* sm:grid-cols-2 */
        gap: 1rem;
        /* sm:gap-4 */
    }

    .rest-feature-card {
        padding: 1.5rem;
        /* sm:p-6 */
    }

    .rest-feature-icon {
        width: 40px;
        /* sm:w-10 */
        height: 40px;
        /* sm:h-10 */
        margin-bottom: 0.75rem;
        /* sm:mb-3 */
    }

    .rest-feature-title {
        font-size: 1rem;
        /* sm:text-base */
    }
}

/* Responsive: MD/LG (Medium/Large Screens) */
@media (min-width: 1024px) {
    .section-rest {
        padding-top: 5rem;
        /* md:py-20 */
        padding-bottom: 5rem;
    }

    .rest-grid {
        grid-template-columns: repeat(2, 1fr);
        /* lg:grid-cols-2 */
    }

    .rest-image-col {
        order: 1;
        /* lg:order-1 */
    }

    .rest-content-col {
        order: 2;
        /* lg:order-2 */
    }

    .rest-image {
        height: 500px;
        /* md:h-[500px] */
    }

    .rest-badge {
        padding: 2rem;
        /* md:p-8 */
    }

    .rest-badge h3 {
        font-size: 2.25rem;
        /* md:text-4xl */
    }

    .rest-title {
        font-size: 3rem;
        /* md:text-5xl */
    }

    .rest-features {
        gap: 1.5rem;
        /* md:gap-6 */
    }
}