/* ==========================
   HERO
========================== */

.btp-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.btp-hero-content {
    padding-top: 120px;
    max-width: 760px;
}

.btp-eyebrow {
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.btp-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.btp-hero-subtitle {
    font-size: 1.2rem;
    max-width: 660px;
    margin-bottom: 2rem;
}

/* ==========================
   INTRO
========================== */

.btp-intro {
    background: var(--btp-ivory);
}

.btp-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.btp-stats strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--btp-navy);
}

.btp-stats span {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================
   EVENT SPACE CARDS
========================== */

.btp-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.btp-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.btp-card-image {
    overflow: hidden;
}

.btp-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .5s ease;
}

.btp-card:hover img {
    transform: scale(1.05);
}

.btp-card-body {
    padding: 2rem;
}

.btp-card-body span {
    color: var(--btp-gold);
    font-weight: 700;
}

/* ==========================
   GATHERINGS
========================== */

.btp-gatherings {
    background: var(--btp-ivory);
    padding: 7rem 0;
}

.btp-gatherings-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.btp-gatherings h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95;
    margin-bottom: 1.5rem;
}

.btp-gatherings-inner > p:not(.section-eyebrow) {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
}

.btp-pill-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
}

.btp-pill-grid span {
    background: white;
    color: var(--btp-navy);
    border: 1px solid rgba(32,54,79,.12);
    border-radius: 999px;
    padding: .85rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btp-pill-grid span:hover {
    transform: translateY(-3px);
    background: var(--btp-navy);
    color: white;
}

/* ==========================
   FEATURES
========================== */

.btp-features {
    background:
        radial-gradient(circle at top center, rgba(198, 169, 107, .08), transparent 35%),
        var(--btp-navy);
    color: white;
    padding: 6rem 0;
}

.feature-card {
    background: rgba(255,255,255,.08);
    min-height: 255px;
    padding: 2.75rem 2rem;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    transition: transform .25s ease, background .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.12);
}

.feature-icon {
    color: var(--btp-gold);
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* ==========================
   FINAL CTA
========================== */

.btp-final-cta {
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    background:
    linear-gradient(rgba(0,0,0,.60),
    rgba(0,0,0,.60)),
    url('../images/final-cta.jpg');
    background-size: cover;
    background-position: center;
}

.btp-final-cta-content {
    max-width: 780px;
}

.btp-final-cta h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95;
    margin-bottom: 1.5rem;
}

.btp-final-cta p {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btp-final-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991.98px) {

    .btp-hero {
        min-height: 80vh;
    }

    .btp-hero-content {
        padding-top: 160px;
    }

    .btp-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .btp-card img {
        height: 260px;
    }
}

@media (max-width: 767.98px) {

    .btp-hero-title,
    .btp-gatherings h2,
    .btp-final-cta h2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .btp-hero-subtitle,
    .btp-final-cta p {
        font-size: 1rem;
    }

    .btp-gatherings {
        padding: 5rem 0;
    }

    .btp-final-cta {
        min-height: 60vh;
        padding: 6rem 0;
    }
}


/* ==========================
   HOMEPAGE POLISH
========================== */

.btp-hero {
    background-attachment: fixed;
}

.btp-hero-actions,
.btp-final-cta-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.btp-intro img {
    transition: transform .6s ease, box-shadow .3s ease;
}

.btp-intro img:hover {
    transform: scale(1.015);
}

.btp-spaces {
    padding: 7rem 0 !important;
}

.btp-gatherings {
    border-top: 1px solid rgba(32,54,79,.06);
    border-bottom: 1px solid rgba(32,54,79,.06);
}

.btp-final-cta {
    background-attachment: fixed;
}

.btp-final-cta-content {
    padding: 2rem 0;
}
