/* Buffalo Village Brand Colors */
:root {
    --brand-orange: #FF6B35;
    --brand-orange-dark: #E55A2B;
    --brand-red: #DC143C;
    --brand-yellow: #FFD700;
    --brand-dark-grey: #2C2C2C;
    --brand-light-grey: #4a4c70;
    --text-body: 1.0625rem;
    --text-muted: #5a5a5a;
    --section-space: clamp(3rem, 7vw, 5rem);
}

/* Override template btn-custom colors with brand colors */
.btn.btn-custom {
    border-color: var(--brand-orange);
    color: var(--brand-dark-grey);
}

.btn.btn-custom:hover {
    color: white;
    background: var(--brand-orange);
    box-shadow: inset 0 0 0 30px var(--brand-orange);
}

/* Clickable contact in top bar (tel / mailto) */
.top-bar .text a.top-bar-contact-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.top-bar .text a.top-bar-contact-link:hover {
    color: #FDBE33;
}

/* Footer: address → Google Maps, phone → dial, email → mail client */
.footer .footer-contact a.footer-contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer .footer-contact a.footer-contact-link:hover {
    color: #FDBE33;
}

/* --- Landing polish: type rhythm, consistent headers, room strips --- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Eyebrow + title: align with brand orange (template used #FDBE33) */
.section-header > p:first-of-type {
    color: var(--brand-orange) !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: var(--brand-dark-grey) !important;
    font-weight: 700 !important;
}

.section-header-lead,
.section-header > p.mt-3 {
    font-size: var(--text-body);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.home-rooms-intro.service {
    padding-top: var(--section-space);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

/* Room parallax blocks: clearer hierarchy + secondary CTA */
.room-parallax .room-content .room-heading {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.room-content .room-heading {
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #fff;
}

.room-meta {
    margin: 0 0 1.15rem 0;
    padding: 0;
}

.room-meta__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 1rem;
    margin-bottom: 0.35rem;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.room-meta__row dt {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    min-width: 4.5rem;
}

.room-meta__row dd {
    margin: 0;
    font-weight: 500;
    color: #fff;
}

.room-meta__unit {
    font-weight: 500;
    font-size: 0.88em;
    color: rgba(255, 255, 255, 0.8);
}

.room-content.text-right .room-meta__row {
    justify-content: flex-end;
}

.room-excerpt {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.15rem !important;
    max-width: 34rem;
}

.room-content.text-right .room-excerpt {
    margin-left: auto;
}

.room-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.room-content.text-right .room-actions {
    justify-content: flex-end;
}

.btn-room-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.92);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-room-secondary:hover {
    background: #fff;
    color: var(--brand-dark-grey) !important;
    border-color: #fff;
}

.room-content .btn-custom.btn-room-primary {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff !important;
}

.room-content .btn-custom.btn-room-primary:hover {
    background: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
    color: #fff !important;
    box-shadow: none;
}

/* ========== Site-wide public pages: spacing, hero, prose ========== */
.page-section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.page-section--white {
    background: #fff;
}

.page-section--muted {
    background: #f8f9fa;
}

.page-section--tight {
    padding: clamp(2rem, 4vw, 3rem) 0 !important;
}

.page-header-title {
    font-size: clamp(2rem, 5vw, 3.75rem) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
}

.page-header-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem) !important;
    line-height: 1.55 !important;
    max-width: 38rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-eyebrow {
    color: var(--brand-orange) !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
}

.section-title-lg,
h3.section-title-lg {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--brand-dark-grey);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.prose-site,
.content-section {
    font-size: var(--text-body);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 48rem;
}

.content-section h2,
.prose-site h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--brand-dark-grey);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.content-section > h2:first-child,
.prose-site > h2:first-child {
    margin-top: 0;
}

.prose-site h3,
.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-dark-grey);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.prose-site p,
.content-section p {
    margin-bottom: 1rem;
}

.prose-site a,
.content-section a {
    color: var(--brand-orange);
    text-decoration: none;
}

.prose-site a:hover,
.content-section a:hover {
    text-decoration: underline;
}

.quote-block {
    background: #f8f9fa;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    border-left: 4px solid var(--brand-orange);
    border-radius: 6px;
    margin-top: 1.5rem;
}

.quote-block blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brand-dark-grey);
    line-height: 1.6;
}

/* Home: attractions strip */
.attractions-text-content {
    padding: 0.5rem 0 1rem;
}

.attractions-label {
    color: var(--brand-orange);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.5rem;
}

.attractions-heading {
    color: var(--brand-dark-grey);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.attractions-description {
    color: var(--text-muted);
    font-size: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.btn-attractions {
    background: white;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: inline-block;
    border-radius: 4px;
}

.btn-attractions:hover {
    background: var(--brand-orange);
    color: white;
    text-decoration: none;
}

.attraction-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.attraction-featured-image {
    position: relative;
    width: 100%;
    height: min(500px, 55vh);
    overflow: hidden;
}

.attraction-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-featured:hover .attraction-featured-image img {
    transform: scale(1.04);
}

.attraction-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35), transparent);
    padding: 2rem 1.75rem 1.5rem;
    color: white;
}

.attraction-featured-content h3 {
    color: white;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.attraction-featured-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.btn-attractions-details {
    background: var(--brand-orange);
    color: white !important;
    border: 2px solid var(--brand-orange);
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: inline-block;
    border-radius: 4px;
}

.btn-attractions-details:hover {
    background: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
    color: white !important;
}

@media (max-width: 991px) {
    .attraction-featured-image {
        height: min(400px, 45vh);
    }
}

@media (max-width: 767px) {
    .attraction-featured-image {
        height: 280px;
    }
    .attraction-featured-overlay {
        padding: 1.25rem 1rem 1rem;
    }
}

/* Home: dining parallax heading */
.dining-content .dining-heading {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.dining-content .dining-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 36rem;
}

/* Grids: cards */
.causes-text h3,
.blog-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.causes-text p,
.blog-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.causes-text h3 a,
.blog-text h3 a {
    color: var(--brand-dark-grey);
    text-decoration: none;
}

.causes-text h3 a:hover,
.blog-text h3 a:hover {
    color: var(--brand-orange);
}

/* Room detail */
.room-details-content .room-description {
    font-size: var(--text-body);
    line-height: 1.75;
    color: #444;
}

.room-details-content .room-description p {
    margin-bottom: 1rem;
}

.room-details-content > h2:first-of-type {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    letter-spacing: -0.02em;
}

.room-amenities h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark-grey);
    letter-spacing: -0.01em;
}

/* Wider prose column (CMS / legal HTML) */
.prose-site.prose-site--wide,
.prose-site--wide {
    max-width: 52rem;
}

/* ========== Dining gallery (fixed grid, no blog template blue cards) ========== */
.dining-gallery-section {
    background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 55%);
}

.dining-gallery__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    outline: none;
}

.dining-gallery__link:focus-visible .dining-gallery__frame {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.4);
}

.dining-gallery__frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: #e8e8ea;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.dining-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dining-gallery__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 35%, rgba(0, 0, 0, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dining-gallery__link:hover .dining-gallery__frame,
.dining-gallery__link:focus .dining-gallery__frame {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.dining-gallery__link:hover .dining-gallery__img,
.dining-gallery__link:focus .dining-gallery__img {
    transform: scale(1.05);
}

.dining-gallery__link:hover .dining-gallery__shine,
.dining-gallery__link:focus .dining-gallery__shine {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .dining-gallery__frame {
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }
}

/* ========== Footer ========== */
.footer.footer-site {
    margin-top: 0;
    padding-top: clamp(3.5rem, 8vw, 5.5rem);
    padding-bottom: 0;
    background: linear-gradient(180deg, #17181f 0%, #20212b 48%, #13141a 100%) !important;
    border-top: 3px solid rgba(255, 107, 53, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-site__main {
    padding-bottom: 0.25rem;
}

.footer.footer-site .footer-contact h2,
.footer.footer-site .footer-link h2,
.footer.footer-site .footer-reviews-column h2 {
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #f0b24c !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer.footer-site .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.footer.footer-site .footer-contact p i {
    width: 1.15rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.18rem;
    color: var(--brand-orange);
}

.footer.footer-site .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer.footer-site .footer-social a.btn-custom {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-width: 1px !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 0 !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer.footer-site .footer-social a.btn-custom:hover {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* List-style footer links only — not widgets (Booking card / platform buttons) */
.footer.footer-site .footer-link a:not(.booking-com-snippet):not(.btn):not(.footer-reviews-more) {
    padding: 0.3rem 0;
    margin-bottom: 0.2rem;
    border-radius: 4px;
    font-size: 0.93rem;
    transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.footer.footer-site .footer-link a:not(.booking-com-snippet):not(.btn):not(.footer-reviews-more):hover {
    letter-spacing: 0 !important;
    padding-left: 0.4rem !important;
    color: #f0b24c !important;
    background: rgba(255, 255, 255, 0.05);
}

.footer.footer-site .footer-link a.booking-com-snippet::before {
    display: none !important;
}

.footer.footer-site .booking-com-snippet.booking-com-snippet--footer {
    background: rgba(22, 45, 72, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    padding: 1.15rem 1.25rem 1.1rem !important;
    margin-bottom: 0.9rem !important;
    display: block;
}

.footer.footer-site .booking-com-snippet .booking-com-snippet__inner {
    gap: 0.75rem 1rem;
    align-items: flex-start;
}

.footer.footer-site .booking-com-snippet .booking-com-snippet__label {
    color: #fff;
    line-height: 1.25;
}

.footer.footer-site .booking-com-snippet .booking-com-snippet__count {
    color: rgba(255, 255, 255, 0.62);
    margin-top: 6px;
    line-height: 1.4;
}

.footer.footer-site .booking-com-snippet__score-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    align-self: flex-start;
}

.footer.footer-site .booking-com-snippet__highlight {
    color: #7dd3fc;
    margin-top: 0.85rem;
    line-height: 1.45;
}

.footer.footer-site .booking-com-snippet__link-hint {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: #9ec9f0;
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    padding-left: 0;
    line-height: 1.45;
}

.footer.footer-site a.booking-com-snippet--link:hover {
    box-shadow: 0 8px 28px rgba(0, 40, 90, 0.45);
    background: rgba(28, 52, 82, 0.82) !important;
}

.footer.footer-site .footer-review-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer.footer-site .footer-review-platforms .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 0.6rem 1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    min-height: 2.65rem;
    border-radius: 8px;
}

.footer.footer-site .footer-review-platforms .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff !important;
}

.footer.footer-site .footer-reviews-more {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0.35rem 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer.footer-site .footer-site__bottom.copyright .row {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    margin-top: 0.75rem;
}

.footer.footer-site .footer-copy {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.42);
}

.footer.footer-site .footer-copy a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.footer.footer-site .footer-copy a:hover {
    color: #f0b24c;
}

@media (max-width: 767.98px) {
    .footer.footer-site .footer-site__bottom .text-md-right {
        text-align: center !important;
    }
}
