/*
 * The Laneway Hostel - page-specific stylesheet
 * ALL rules scoped to .tlh-wrap — zero impact on other pages
 */

/* ══════════════════════════════════════════════════
   CUSTOM PROPERTIES
══════════════════════════════════════════════════ */
.tlh-wrap {
    --tlh-bg:      #FAFAF7;
    --tlh-blue:    #0E7C9D;
    --tlh-blue-h:  #0A6A88;
    --tlh-teal:    #1BA89E;
    --tlh-yellow:  #FFB627;
    --tlh-yellow-h:#E8A020;
    --tlh-text:    #1A3540;
    --tlh-muted:   #5C7480;
    --tlh-border:  #D6E8EE;
    --tlh-surface: #EEF6F9;
    --tlh-fn:      'Poppins', 'Nunito', system-ui, sans-serif;
    --tlh-r:       8px;
    --tlh-pill:    50px;
    --tlh-t:       0.22s ease;
}

/* ══════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════ */
.tlh-wrap {
    background: var(--tlh-bg);
    color: var(--tlh-text);
    font-family: var(--tlh-fn);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
.tlh-wrap *, .tlh-wrap *::before, .tlh-wrap *::after { box-sizing: border-box; }
.tlh-wrap img  { display: block; max-width: 100%; }
.tlh-wrap a    { color: inherit; text-decoration: none; }
.tlh-wrap ul   { list-style: none; margin: 0; padding: 0; }

.tlh-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Shared section header */
.tlh-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.tlh-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tlh-blue);
    margin-bottom: 12px;
}

.tlh-section-heading {
    font-family: var(--tlh-fn);
    font-size: 2rem;
    font-weight: 800;
    color: var(--tlh-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
}

.tlh-section-lead {
    font-size: 1rem;
    color: var(--tlh-muted);
    line-height: 1.75;
    margin: 0 auto;
    max-width: 560px;
}

/* Shared buttons (pill shape) */
.tlh-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--tlh-pill);
    font-family: var(--tlh-fn);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all var(--tlh-t);
    cursor: pointer;
    border: 2px solid transparent;
}

.tlh-btn--yellow {
    background: var(--tlh-yellow);
    color: var(--tlh-text);
    border-color: var(--tlh-yellow);
}
.tlh-btn--yellow:hover {
    background: var(--tlh-yellow-h);
    border-color: var(--tlh-yellow-h);
    color: var(--tlh-text);
}

.tlh-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}
.tlh-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* ══════════════════════════════════════════════════
   BLOCK 1 - HERO
══════════════════════════════════════════════════ */
.tlh-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tlh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 124, 157, 0.80) 0%,
        rgba(14, 52,  64,  0.72) 100%
    );
}

.tlh-hero .tlh-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.tlh-hero-content { max-width: 720px; }

.tlh-hero-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--tlh-yellow);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 183, 39, 0.45);
    padding: 6px 16px;
    border-radius: var(--tlh-pill);
    margin-bottom: 22px;
}

.tlh-hero-title {
    font-family: var(--tlh-fn);
    font-size: 4.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.06;
    margin: 0 0 20px;
}

.tlh-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.72;
    margin: 0 0 40px;
    max-width: 560px;
    font-weight: 400;
}

.tlh-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   BLOCK 2 - WELCOME
══════════════════════════════════════════════════ */
.tlh-welcome-section { padding: 96px 0; }

.tlh-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: center;
}

.tlh-welcome-content .tlh-tag { margin-bottom: 14px; }

.tlh-welcome-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--tlh-text);
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin: 0 0 24px;
}

.tlh-welcome-desc {
    font-size: 1rem;
    color: var(--tlh-muted);
    line-height: 1.82;
    margin: 0 0 16px;
}
.tlh-welcome-desc:last-of-type { margin-bottom: 32px; }

.tlh-welcome-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tlh-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--tlh-blue);
    background: var(--tlh-surface);
    padding: 8px 16px;
    border-radius: var(--tlh-pill);
    border: 1px solid var(--tlh-border);
}
.tlh-stat svg {
    width: 14px;
    height: 14px;
    stroke: var(--tlh-blue);
    fill: none;
    flex-shrink: 0;
}

.tlh-welcome-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 124, 157, 0.14);
}

.tlh-welcome-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.tlh-welcome-img-wrap:hover .tlh-welcome-img { transform: scale(1.03); }

/* ══════════════════════════════════════════════════
   BLOCK 3 - ROOMS
══════════════════════════════════════════════════ */
.tlh-rooms-section {
    padding: 96px 0;
    background: var(--tlh-surface);
}

.tlh-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tlh-room-group {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 52, 64, 0.06);
    transition: box-shadow var(--tlh-t), transform var(--tlh-t);
    display: flex;
    flex-direction: column;
}
.tlh-room-group:hover {
    box-shadow: 0 12px 40px rgba(14, 124, 157, 0.14);
    transform: translateY(-4px);
}

.tlh-room-group-img-wrap { overflow: hidden; flex-shrink: 0; }

.tlh-room-group-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.tlh-room-group:hover .tlh-room-group-img { transform: scale(1.05); }

.tlh-room-group-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tlh-room-group-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tlh-blue);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--tlh-surface);
    letter-spacing: -0.01em;
}

.tlh-room-list {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tlh-room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--tlh-border);
}
.tlh-room-item:last-child { border-bottom: none; }

.tlh-room-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tlh-room-item-name {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--tlh-text);
    line-height: 1.3;
}

.tlh-room-item-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--tlh-muted);
}
.tlh-room-item-meta svg {
    width: 11px;
    height: 11px;
    stroke: var(--tlh-muted);
    fill: none;
    flex-shrink: 0;
}

.tlh-room-view {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tlh-blue);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 5px 12px;
    border: 1.5px solid var(--tlh-border);
    border-radius: var(--tlh-pill);
    transition: all var(--tlh-t);
}
.tlh-room-view:hover {
    background: var(--tlh-blue);
    color: #fff;
    border-color: var(--tlh-blue);
}

/* ══════════════════════════════════════════════════
   BLOCK 4 - LOCATION
══════════════════════════════════════════════════ */
.tlh-location-section { padding: 96px 0; }

.tlh-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.tlh-distances {
    border: 1px solid var(--tlh-border);
    border-radius: 16px;
    overflow: hidden;
}

.tlh-distance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--tlh-border);
    transition: background var(--tlh-t);
}
.tlh-distance-row:last-child { border-bottom: none; }
.tlh-distance-row:hover { background: var(--tlh-surface); }

.tlh-distance-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--tlh-text);
}
.tlh-distance-name svg {
    width: 16px;
    height: 16px;
    stroke: var(--tlh-blue);
    fill: none;
    flex-shrink: 0;
}

.tlh-distance-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.tlh-distance-dist {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--tlh-blue);
}
.tlh-distance-time {
    font-size: 0.72rem;
    color: var(--tlh-muted);
}

.tlh-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(14, 52, 64, 0.10);
}
.tlh-map {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* ══════════════════════════════════════════════════
   BLOCK 5 - AMENITIES
══════════════════════════════════════════════════ */
.tlh-amenities-section {
    padding: 96px 0;
    background: var(--tlh-surface);
}

.tlh-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 0;
}

.tlh-amenity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    transition: background var(--tlh-t);
    cursor: default;
    border-radius: var(--tlh-r);
}
.tlh-amenity-item:hover { background: #DFF0F5; }
.tlh-amenity-item:hover .tlh-amenity-icon svg { transform: scale(1.12); }

.tlh-amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.tlh-amenity-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--tlh-blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--tlh-t);
}

.tlh-amenity-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tlh-text);
    line-height: 1.4;
}

/* ══════════════════════════════════════════════════
   BLOCK 6 - CTA
══════════════════════════════════════════════════ */
.tlh-cta-section {
    position: relative;
    padding: 112px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tlh-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 124, 157, 0.90) 0%,
        rgba(27, 168, 158, 0.84) 100%
    );
}

.tlh-cta-section .tlh-container {
    position: relative;
    z-index: 1;
}

.tlh-cta-body {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tlh-cta-heading {
    font-family: var(--tlh-fn);
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 20px;
}

.tlh-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    margin: 0 0 44px;
    max-width: 500px;
}

.tlh-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .tlh-welcome-grid { grid-template-columns: 1fr 400px; gap: 56px; }
}

@media (max-width: 1024px) {
    .tlh-hero-title   { font-size: 3.4rem; }
    .tlh-rooms-grid   { grid-template-columns: repeat(2, 1fr); }
    .tlh-amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .tlh-location-grid  { gap: 40px; }
}

@media (max-width: 900px) {
    .tlh-welcome-grid   { grid-template-columns: 1fr; gap: 48px; }
    .tlh-welcome-img    { height: 380px; }
    .tlh-location-grid  { grid-template-columns: 1fr; }
    .tlh-map            { height: 320px; }
    .tlh-section-heading { font-size: 1.8rem; }
    .tlh-cta-heading    { font-size: 2.1rem; }
}

@media (max-width: 768px) {
    .tlh-container { padding: 0 24px; }

    .tlh-hero        { min-height: 100svh; }
    .tlh-hero-title  { font-size: 2.6rem; }
    .tlh-hero-desc   { font-size: 1rem; }

    .tlh-welcome-section,
    .tlh-rooms-section,
    .tlh-location-section,
    .tlh-amenities-section { padding: 64px 0; }

    .tlh-rooms-grid   { grid-template-columns: 1fr; }
    .tlh-amenities-grid { grid-template-columns: repeat(2, 1fr); }

    .tlh-welcome-heading { font-size: 2rem; }
    .tlh-section-heading { font-size: 1.65rem; }

    .tlh-cta-section  { padding: 80px 0; }
    .tlh-cta-heading  { font-size: 1.8rem; }
    .tlh-cta-btns     { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; }
    .tlh-btn          { text-align: center; }
}

@media (max-width: 480px) {
    .tlh-hero-title   { font-size: 2rem; }
    .tlh-hero-btns    { flex-direction: column; }
    .tlh-amenities-grid { grid-template-columns: 1fr; }
    .tlh-welcome-stats { flex-direction: column; }
    .tlh-section-header { margin-bottom: 40px; }
}
