﻿/* ==========================================================
   PROPERTY LANDING PAGE
   ========================================================== */

:root {
    --primary: #0b6d77;
    --primary-dark: #084e56;
    --gold: #f5b301;
    --text: #24323d;
    --muted: #697b88;
    --bg: #f6f8fb;
    --card: #ffffff;
    --radius: 24px;
    --shadow: 0 18px 45px rgba(0,0,0,.12);
}

.landing-page {
    background: var(--bg);
    color: var(--text);
    display: block;
}

    .landing-page > section {
        margin-left: auto;
        margin-right: auto;
    }

.landing-section {
    width: 92%;
    margin: 18px auto;
}




/* ==========================================================
   HERO
   ========================================================== */

.landing-hero {
    min-height: 780px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 100%;
    position: relative;
    color: #fff;
    width: 100%;
}

.landing-hero-inner {
    width: min(1200px,92%);
    margin: auto;
    text-align: left;
    align-self: center;
    padding-top: 20px;
}

.landing-location {
    font-size: 1.5rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: .9;
    margin-bottom: 10px;
}

.landing-hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    line-height: .92;
    margin: 0 0 14px;
}

.landing-property-name {
    font-size: 2rem;
    margin: 24px 0;
}

.landing-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    font-size: 1.3rem;
    margin-bottom: 26px;
}

    .landing-facts span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.landing-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    font-size: 2.3rem;
    color: white;
}

    .landing-rating-link {
        color: white;
        text-decoration: none;
        transition: .25s;
    }

        .landing-rating-link:hover {
            color: white;
            font-weight: bold;
        }

.stars {
    color: var(--gold);
    letter-spacing: 3px;
}

.landing-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 34px;
    border-radius: 18px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
    
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        color: #fff;
    }

.btn-secondary {
    color: #222;
    border: 2px solid rgba(255,255,255,.8);
}

    .btn-secondary:hover {
        background: #fff;
        color: #222;
    }


/* ==========================================================
   AMENITY STRIP
   ========================================================== */

.amenity-strip {
    outline: 2px solid #222 !important;
    width: 75%;
    margin: -90px 10px 0px 10px; /* was -65px auto 60px */
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 14px 10px;
    padding: 20px;
    position: relative;
    z-index: 50;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

    .amenity-item span {
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 1.4;
    }

    .amenity-item img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 8px;
    }



/* ==========================================================
   CONTENT
   ========================================================== */

.landing-section {
    width: 85%;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 10px; /* was 70px */
    margin: -60px 0 0 0; /* was 80px */
    align-items: center;
}

.split-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.split-copy {
    margin: 0 0 24px;
}
.section-kicker {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 10px;
}


.split-copy h2 {
    font-size: 3rem;
    margin: 0 0 24px;
}

.split-copy p {
    line-height: 1.8;
    color: var(--muted);
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .check-list li {
        margin-bottom: 14px;
        padding-left: 34px;
        position: relative;
    }

        .check-list li:before {
            content: "✓";
            color: #18a76b;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

.script-note {
    font-size: 1.4rem;
    color: var(--primary);
    font-style: italic;
    margin-top: 35px;
}


/* ==========================================================
   FEATURE CARDS
   ========================================================== */

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: -60px 0 0 0; /* was 80px */
}

.feature-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .feature-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .feature-card div {
        padding: 24px;
    }

    .feature-card h3 {
        margin-top: 0;
        font-size: 1.7rem;
    }

    .feature-card p {
        color: var(--muted);
        line-height: 1.7;
    }


/* ==========================================================
   REVIEWS
   ========================================================== */

.review-band {
    width: min(1280px,92%);
    margin: 0px auto;
    background: linear-gradient(135deg,#065f68,#0b7a84);
    color: #fff;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 40px;
}

.review-band-summary h2 {
    margin-top: 0;
}

.review-band-link {
    color: white;
    text-decoration: underline;
}
    .review-band-link:hover {
        color: white;
        font-weight: bold;
    }

.review-band-summary strong {
    display: block;
    margin: 18px 0;
    font-size: 2rem;
}

.review-band-quotes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.review-band blockquote {
    margin: 0;
    line-height: 1.8;
    font-style: italic;
}

.review-band cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-weight: bold;
}


/* ==========================================================
   CTA
   ========================================================== */

.booking-cta {
    width: min(1200px,92%);
    margin: 15px auto 120px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 38px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 30px;
    align-items: center;
}

.booking-cta-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}

.booking-cta h2 {
    margin: 0;
}

.booking-cta p {
    margin-top: 10px;
    color: var(--muted);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media(max-width:1000px) {

    .split-section,
    .review-band,
    .booking-cta {
        grid-template-columns: 1fr;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .review-band-quotes {
        grid-template-columns: 1fr;
    }

    .amenity-strip {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:700px) {

    .landing-hero {
        min-height: 650px;
    }

        .landing-hero h1 {
            font-size: 3.2rem;
        }

    .amenity-strip {
        grid-template-columns: 1fr;
    }

    .landing-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}


/* ==========================================================
   MOBILE LANDING FIXES
   ========================================================== */

@media (max-width: 700px) {

    .landing-hero {
        min-height: 520px;
        background-position: center bottom;
        padding: 40px 0 90px;
    }

    .landing-hero-inner {
        width: 88%;
        margin: 0 auto;
        padding-top: 0;
    }

    .landing-location {
        font-size: .8rem;
        letter-spacing: .08em;
        margin-bottom: 8px;
    }

    .landing-hero h1 {
        font-size: 2.45rem;
        line-height: .98;
        margin-bottom: 12px;
    }

    .landing-property-name {
        font-size: 1.05rem;
        margin: 10px 0 12px;
    }

    .landing-facts {
        font-size: .92rem;
        gap: 8px 14px;
        margin-bottom: 14px;
    }

    .landing-rating {
        font-size: .92rem;
        gap: 8px;
        margin-bottom: 18px;
        flex-wrap: wrap;
    }

    .landing-actions {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        box-sizing: border-box;
        padding: 13px 18px;
        font-size: 1rem;
        border-radius: 14px;
        text-align: center;
    }

    .amenity-strip {
        width: 88%;
        margin: -58px auto 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .amenity-item {
        gap: 6px;
    }

        .amenity-item img {
            width: 34px;
            height: 34px;
            margin-bottom: 2px;
        }

        .amenity-item span {
            font-size: .82rem;
            line-height: 1.2;
        }

    .landing-section {
        width: 90%;
        margin: 24px auto;
    }

    .split-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 0;
    }

    .split-copy h2 {
        font-size: 1.85rem;
        margin-bottom: 10px;
    }

    .split-copy p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .check-list {
        margin: 16px 0;
    }

        .check-list li {
            margin-bottom: 9px;
            padding-left: 26px;
            font-size: .95rem;
        }

    .script-note {
        font-size: 1.05rem;
        margin-top: 14px;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 0;
    }

    .feature-card img {
        height: 180px;
    }

    .feature-card div {
        padding: 18px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .review-band {
        width: 90%;
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
        margin: 24px auto;
    }

    .review-band-quotes {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .booking-cta {
        width: 90%;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
        gap: 16px;
        margin: 24px auto 50px;
    }

    .booking-cta-icon {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
}