/* =========================================================
   TRANQUIL INN HOSPITALITY
   INDIVIDUAL HOTEL PAGE
   ========================================================= */

.hotel-detail-page {
    min-height: 100vh;
    background: #f7f3ee;
    color: #342a25;
}

.hotel-detail-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    padding: 180px 0 100px;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201, 155, 112, 0.26),
            transparent 34%
        ),
        linear-gradient(
            125deg,
            #231915 0%,
            #51372a 54%,
            #79563f 100%
        );
}

.hotel-detail-hero::before {
    position: absolute;
    top: -170px;
    right: -100px;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.hotel-detail-hero::after {
    position: absolute;
    right: 13%;
    bottom: -260px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.hotel-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(24, 16, 13, 0.45),
            transparent 55%
        );
}

.hotel-detail-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-detail-eyebrow {
    margin: 0 0 14px;
    color: #c99b70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.hotel-detail-hero h1 {
    max-width: 900px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(54px, 8vw, 92px);
    line-height: 1.02;
}

.hotel-detail-hero-description {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

.hotel-detail-location {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-detail-location span {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 600;
}

.hotel-detail-hero-actions,
.hotel-error-actions,
.hotel-detail-cta-actions {
    display: flex;
    margin-top: 35px;
    flex-wrap: wrap;
    gap: 12px;
}

.hotel-primary-button,
.hotel-outline-button,
.hotel-light-outline-button,
.hotel-light-button,
.hotel-room-button {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 27px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hotel-primary-button {
    border: 1px solid #694936;
    background: #694936;
    color: #ffffff;
}

.hotel-primary-button:hover {
    border-color: #90684c;
    background: #90684c;
    color: #ffffff;
    transform: translateY(-2px);
}

.hotel-light-outline-button {
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: transparent;
    color: #ffffff;
}

.hotel-light-outline-button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #35261f;
    transform: translateY(-2px);
}

.hotel-outline-button {
    border: 1px solid #694936;
    background: transparent;
    color: #694936;
}

.hotel-outline-button:hover {
    background: #694936;
    color: #ffffff;
}

.hotel-overview-section {
    padding: 110px 0;
}

.hotel-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: start;
    gap: 75px;
}

.hotel-overview-content h2,
.hotel-section-heading h2,
.hotel-detail-cta h2 {
    margin: 0;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
}

.hotel-overview-content h2 {
    margin-bottom: 26px;
}

.hotel-overview-content > p:not(.hotel-detail-eyebrow) {
    margin: 0 0 18px;
    color: #766b64;
    font-size: 16px;
    line-height: 1.82;
}

.hotel-contact-card {
    padding: 36px;
    border: 1px solid #e1d7cf;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(59, 42, 32, 0.08);
}

.hotel-contact-card h3 {
    margin: 0 0 28px;
    color: #382a23;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
}

.hotel-contact-item {
    display: grid;
    margin-bottom: 22px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.hotel-contact-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #e4d8ce;
    border-radius: 50%;
    background: #faf7f3;
    color: #78543d;
}

.hotel-contact-item small {
    display: block;
    margin-bottom: 5px;
    color: #a69a92;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hotel-contact-item p,
.hotel-contact-item a {
    margin: 0;
    color: #443730;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.hotel-full-button {
    width: 100%;
    margin-top: 12px;
}

.hotel-amenities-section {
    padding: 100px 0;
    background: #efe8e1;
}

.hotel-section-heading {
    display: grid;
    margin-bottom: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
    align-items: end;
    gap: 45px;
}

.hotel-section-heading > p {
    margin: 0;
    color: #756a63;
    line-height: 1.75;
}

.hotel-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hotel-amenity-card {
    min-height: 160px;
    padding: 27px;
    border: 1px solid #ded3ca;
    border-radius: 12px;
    background: #ffffff;
}

.hotel-amenity-number {
    display: block;
    margin-bottom: 27px;
    color: #b08361;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
}

.hotel-amenity-card h3 {
    margin: 0;
    color: #382a23;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
}

.hotel-rooms-section {
    padding: 110px 0;
}

.hotel-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.hotel-room-card {
    overflow: hidden;
    border: 1px solid #e1d7cf;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(59, 42, 32, 0.07);
}

.hotel-room-visual {
    display: grid;
    min-height: 230px;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(101, 69, 50, 0.1),
            rgba(47, 31, 24, 0.5)
        ),
        linear-gradient(
            135deg,
            #b99170,
            #50372b
        );
}

.hotel-room-visual span {
    color: rgba(255, 255, 255, 0.92);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 95px;
}

.hotel-room-content {
    padding: 31px;
}

.hotel-room-label {
    margin: 0 0 6px;
    color: #a57550;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hotel-room-content h3 {
    margin: 0 0 14px;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
}

.hotel-room-description {
    margin: 0 0 20px;
    color: #776c65;
    font-size: 14px;
    line-height: 1.7;
}

.hotel-room-capacity {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel-room-capacity span {
    padding: 7px 11px;
    border-radius: 30px;
    background: #f3eee9;
    color: #6c6058;
    font-size: 11px;
}

.hotel-room-footer {
    display: flex;
    padding-top: 24px;
    margin-top: 24px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #ece4de;
}

.hotel-room-footer small,
.hotel-room-footer span {
    display: block;
    color: #8e837b;
    font-size: 10px;
}

.hotel-room-footer strong {
    display: block;
    margin: 3px 0;
    color: #49352a;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
}

.hotel-room-button {
    min-height: 48px;
    padding: 12px 19px;
    border: 1px solid #694936;
    background: #694936;
    color: #ffffff;
}

.hotel-room-button:hover {
    background: #90684c;
    color: #ffffff;
}

.hotel-no-rooms-card {
    padding: 50px;
    border: 1px solid #e1d7cf;
    border-radius: 15px;
    background: #ffffff;
    text-align: center;
}

.hotel-no-rooms-card h3 {
    margin: 0 0 13px;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
}

.hotel-no-rooms-card p {
    margin: 0 0 25px;
    color: #756a63;
}

.hotel-detail-cta {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(190, 145, 106, 0.17),
            transparent 35%
        ),
        #2d211c;
}

.hotel-detail-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.hotel-detail-cta h2 {
    color: #ffffff;
}

.hotel-detail-cta p:not(.hotel-detail-eyebrow) {
    max-width: 650px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.hotel-light-button {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #35261f;
}

.hotel-light-button:hover {
    border-color: #c99b70;
    background: #c99b70;
    color: #ffffff;
}

.hotel-error-section {
    min-height: 760px;
    padding: 190px 0 100px;
    background: #f7f3ee;
}

.hotel-error-card {
    max-width: 720px;
    padding: 55px;
    margin: 0 auto;
    border: 1px solid #e1d7cf;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 20px 55px rgba(59, 42, 32, 0.08);
}

.hotel-error-card h1 {
    margin: 0 0 17px;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 52px;
}

.hotel-error-card > p:not(.hotel-detail-eyebrow) {
    margin: 0;
    color: #756a63;
    line-height: 1.7;
}

.hotel-error-actions {
    justify-content: center;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
    .hotel-overview-grid {
        grid-template-columns: 1fr;
    }

    .hotel-contact-card {
        max-width: 700px;
    }

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

    .hotel-detail-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .hotel-section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hotel-rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {
    .hotel-detail-hero {
        min-height: 680px;
        padding: 145px 0 75px;
    }

    .hotel-detail-hero h1 {
        font-size: 50px;
    }

    .hotel-detail-hero-description {
        font-size: 16px;
    }

    .hotel-detail-hero-actions,
    .hotel-detail-cta-actions,
    .hotel-error-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hotel-primary-button,
    .hotel-outline-button,
    .hotel-light-outline-button,
    .hotel-light-button {
        width: 100%;
    }

    .hotel-overview-section,
    .hotel-rooms-section {
        padding: 75px 0;
    }

    .hotel-overview-grid {
        gap: 40px;
    }

    .hotel-contact-card {
        padding: 27px 22px;
    }

    .hotel-amenities-section {
        padding: 75px 0;
    }

    .hotel-amenities-grid {
        grid-template-columns: 1fr;
    }

    .hotel-room-content {
        padding: 26px 21px;
    }

    .hotel-room-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .hotel-room-button {
        width: 100%;
    }

    .hotel-detail-cta {
        padding: 65px 0;
    }

    .hotel-error-section {
        padding: 145px 0 75px;
    }

    .hotel-error-card {
        padding: 38px 22px;
    }

    .hotel-error-card h1 {
        font-size: 41px;
    }
}