/* ==========================================================================
   Hotels page layout  —  thevegasvacation.com/Home/Hotels
   All rules are namespaced under .lvh / .lvh-* so nothing leaks into other
   pages or overrides layout_style.css elsewhere on the site.
   Upload to: /css/hotels_layout.css
   ========================================================================== */

.lvh {
    --ink: #14122e;
    --muted: #5b5c78;
    --blue: #2a1fd4;
    --red: #e11414;
    --gold: #f2b100;
    --line: #e4e6f1;
    --surface: #f5f6fb;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--ink);
    padding: 46px 0 60px;
    background: #fff;
}

.lvh *, .lvh *::before, .lvh *::after { box-sizing: border-box; }

/* reset inherited site heading/paragraph treatments inside this block */
.lvh h1, .lvh h2, .lvh h3, .lvh p, .lvh summary {
    position: static;
    text-align: left;
    text-transform: none;
    text-shadow: none;
    background: none;
    font-family: inherit;
    letter-spacing: normal;
    padding: 0;
}
.lvh ul, .lvh li { text-align: left; list-style: none; }
.lvh li::before { content: none; }

/* ---------- intro ---------- */
.lvh-intro { max-width: 780px; }
.lvh p.lvh-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 12px;
}
.lvh h1.lvh-title {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 18px;
}
.lvh-lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 26px;
}

.lvh-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}
.lvh-fact {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 16px;
}
.lvh-fact b { font-size: 15px; font-weight: 800; color: var(--blue); }
.lvh-fact span { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* ---------- filter bar ---------- */
.lvh-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 16px 0 22px;
    border-top: 2px solid var(--ink);
    margin-bottom: 6px;
}
.lvh-toolbar__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    flex: 0 0 100%;
    margin: 0 0 4px;
}
.lvh-chip {
    appearance: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.lvh-chip:hover { border-color: var(--blue); color: var(--blue); }
.lvh-chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.lvh-chip:focus-visible { outline: 3px solid rgba(42, 31, 212, .35); outline-offset: 2px; }

/* ---------- card grid ---------- */
.lvh-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 26px;
}
.lvh-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lvh-card:hover {
    transform: translateY(-3px);
    border-color: #cdd1e6;
    box-shadow: 0 16px 34px -18px rgba(20, 18, 46, .35);
}
.lvh-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d8dae8;
}
.lvh-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.lvh-card:hover .lvh-card__media img { transform: scale(1.045); }
.lvh-card__area {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(20, 18, 46, .82);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 4px;
}
.lvh-card__zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}
.lvh-card:hover .lvh-card__zoom { opacity: 1; transform: translateY(0); }

.lvh-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1 1 auto; }
.lvh-card__name {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 9px;
    text-transform: none;
}
.lvh-card__teaser { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0 0 14px; }

.lvh-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 4px; }
.lvh-tag {
    font-size: 11px;
    font-weight: 700;
    color: #3c3d5c;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 5px 9px;
}

.lvh-more { margin: 16px 0 0; border-top: 1px solid var(--line); padding-top: 14px; }
.lvh .lvh-more > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
}
.lvh-more > summary::-webkit-details-marker { display: none; }
.lvh-more > summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}
.lvh-more[open] > summary::after { transform: rotate(-135deg) translateY(-1px); }
.lvh-more > summary:hover { color: var(--red); }
.lvh-more__close { display: none; }
.lvh-more[open] .lvh-more__open { display: none; }
.lvh-more[open] .lvh-more__close { display: inline; }
.lvh-more__inner { padding-top: 12px; }
.lvh-more__inner p { font-size: 14px; line-height: 1.65; color: #43445e; margin: 0 0 12px; }
.lvh-more__inner p:last-child { margin-bottom: 0; }

.lvh-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.lvh-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 7px;
    overflow: hidden;
    background: #d8dae8;
}
.lvh-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .2s ease; }
.lvh-thumb:hover img { opacity: .8; }

.lvh-empty {
    display: none;
    padding: 40px 0;
    font-size: 15px;
    color: var(--muted);
}
.lvh-grid.is-empty + .lvh-empty { display: block; }

.lvh-note {
    margin-top: 34px;
    padding: 18px 20px;
    background: var(--surface);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

.lvh-aside { padding-top: 46px; }

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
    .lvh h1.lvh-title { font-size: 34px; }
}
@media (max-width: 991px) {
    .lvh-grid { gap: 20px; }
    .lvh-card__body { padding: 17px 17px 19px; }
    .lvh-card__name { font-size: 19px; }
}
@media (max-width: 767px) {
    .lvh { padding: 30px 0 44px; }
    .lvh-grid { grid-template-columns: minmax(0, 1fr); }
    .lvh h1.lvh-title { font-size: 27px; }
    .lvh-lede { font-size: 15.5px; }
    .lvh-toolbar { padding: 14px 0 18px; gap: 8px; }
    .lvh-chip { font-size: 12px; padding: 7px 13px; }
    .lvh-aside { padding-top: 32px; }
}
@media (prefers-reduced-motion: reduce) {
    .lvh-card, .lvh-card__media img, .lvh-card__zoom { transition: none; }
    .lvh-card:hover { transform: none; }
    .lvh-card:hover .lvh-card__media img { transform: none; }
}
