/* =========================================================
   home.css  (Luxe Theme)
   ---------------------------------------------------------
   TABLE OF CONTENTS
   1) BASE / UTILITIES
   3) ABOUT US
   4) ROOMS (and Shared Background)
   5) ROOMS – CARDS
   6) HOTEL AMENITIES
   8) MEDIA QUERIES
   ========================================================= */


/* =========================
   1) BASE / UTILITIES
========================= */
body {
    background-color: white;
    min-height: var(--min-height-body);
}

.card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--border-radius-secondary);
    background-color: var(--background-tertiary);
    border: var(--border-primary);
    box-shadow: var(--box-shadow-primary);
}


/* =========================
   3) ABOUT US
   ========================= 
   Fully managed by _shared/sections/about/about-variants.css.
   Legacy overrides removed — they conflicted via #aboutus (ID specificity)
   beating the variant's .section-about--elegant (class specificity).
*/



/* =========================
   4) ROOMS (and Shared Background)
========================= */




/* rooms/gallery header now handled by _shared/base/section-header.css */


.gallery__buttons button {
    position: relative;
    margin-bottom: 1.25rem;
}

.gallery__buttons button::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.25rem;
    width: 0;
    height: 0;
    border-left: 0.9375rem solid transparent;
    border-right: 0.9375rem solid transparent;
    border-top: 0.9375rem solid var(--brand-primary-color);
    transform: translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.gallery__buttons button.active::after {
    opacity: 1;
}


/* =========================
   8) MEDIA QUERIES
========================= */
@media (max-width: 1024px) {
    /* About: managed by about-variants.css */
    /* Header overrides now handled by _shared/base/section-header.css */
}