/* ---------- THEME ---------- */

:root {
    --color-bg: #140b08;
    --color-bg-alt: #1f120e;
    --color-primary: #c24b2a;        /* Bryce/Zion red */
    --color-primary-dark: #8b2c1f;
    --color-accent: #ffd409;         /* logo yellow */
    --color-light: #f7f0e6;
    --color-muted: #c6b7a3;
    --color-border: #3b2620;

    --font-heading: 'Fjalla One', sans-serif;
    --font-body: 'Roboto Condensed', sans-serif;
}

/* ---------- GLOBAL ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-light);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    min-height: 60vh;
}

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #ffb300);
    color: #20120a;
    border-color: #f0b800;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: rgba(255, 212, 9, 0.12);
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-light);
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
}

/* ---------- HEADER / NAV ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(10, 5, 4, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.5rem;
    gap: 1rem;
}

.brand {
    text-decoration: none;
}

.brand-mark {
    background: var(--color-accent);
    color: #20120a;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-family: 'Holtwood One SC', serif;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.brand-title {
    display: block;
    font-size: 1.1rem;
}

.brand-subtitle {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Nav */

.main-nav {
    display: none;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-light);
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    border-bottom-color: var(--color-accent);
    text-decoration: none;
}

.nav-reserve {
    padding-inline: 1.2rem;
}

/* Header contact */

.header-contact {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.header-phone {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-phone i {
    margin-right: 0.35rem;
}

/* Mobile nav toggle */

.nav-toggle {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 1.2rem;
    height: 2px;
    background: var(--color-light);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile nav open state */

.main-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a0f0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav.is-open ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.5rem;
}

.main-nav.is-open li:last-child {
    margin-top: 0.5rem;
}

/* Desktop header */

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
    }

    .main-nav ul {
        flex-direction: row;
        padding: 0;
    }

    .header-contact {
        display: flex;
    }

    .header-inner {
        gap: 2.5rem;
    }
}

/* ---------- HERO (HOME) ---------- */

.hero {
    position: relative;
    background-image: url('images/pinks.jpg');
    background-size: cover;
    background-position: center center;
    color: var(--color-light);
    padding: 4.5rem 0 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 212, 9, 0.18), transparent 55%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9));
    mix-blend-mode: multiply;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 620px;
}

.hero-kicker {
    font-family: var(--font-heading);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin: 0 0 0.75rem;
}

.hero-subtitle {
    max-width: 36rem;
    color: var(--color-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-season {
    font-size: 0.95rem;
    color: var(--color-accent);
}

/* ---------- SECTIONS ---------- */

.section {
    padding: 3.5rem 0;
}

.section-light {
    background: #22130e;
    background: radial-gradient(circle at top left, #3a2119, #140b08 60%);
}

.section-dark {
    background: #140b08;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin: 0 0 0.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section-intro {
    max-width: 40rem;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--color-muted);
}

/* ---------- CARDS (HOME HIGHLIGHTS) ---------- */

.card-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 720px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card {
    background: rgba(10, 5, 4, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 170px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem 1.25rem 1.4rem;
}

.card h3 {
    font-family: var(--font-heading);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.card-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

/* ---------- SPLIT LAYOUT (HOME + ABOUT) ---------- */

.split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.split-text {
    flex: 1;
}

.split-image-wrapper {
    flex: 1;
}

.split-image {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

@media (min-width: 900px) {
    .split {
        flex-direction: row;
        align-items: center;
    }
}

/* ---------- REVIEW SECTION ---------- */

.review-section {
    display: flex;
    justify-content: center;
}

.review-widget {
    max-width: 480px;
    text-align: center;
}

/* ---------- PAGE HEROES (ABOUT / RATES / LOCATION) ---------- */

.page-hero {
    position: relative;
    padding: 4rem 0 3.2rem;
    color: var(--color-light);
    background-size: cover;
    background-position: center;
}

.page-hero-about {
    background-image: url('images/from_pinks.jpg');
}

.page-hero-rates {
    background-image: url('images/sites2.jpg');
}

.page-hero-location {
    background-image: url('images/above.jpg');
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9));
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-inner h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero-inner p {
    margin: 0;
    color: var(--color-muted);
}

/* ---------- ABOUT ---------- */

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-layout.reverse {
    flex-direction: column-reverse;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.about-text p {
    color: var(--color-muted);
    margin-bottom: 0.9rem;
}

.about-image-column {
    display: grid;
    gap: 1rem;
}

.about-image {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.about-image.secondary {
    opacity: 0.95;
}

@media (min-width: 900px) {
    .about-layout {
        flex-direction: row;
    }
    .about-layout.reverse {
        flex-direction: row-reverse;
    }
    .about-text {
        flex: 3;
    }
    .about-image-column {
        flex: 2;
    }
}

/* Photo grid */

.photo-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.9rem;
}

.photo-grid-item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    height: 160px;
}

/* ---------- RATES ---------- */

.rates-table-wrapper {
    margin: 2rem auto 1.5rem;
    max-width: 900px;
    overflow-x: auto;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b0f0a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.rates-table th,
.rates-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.rates-table thead {
    background: var(--color-primary-dark);
}

.rates-table th {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rates-table tbody tr:nth-child(odd) {
    background: #24130c;
}

.rates-table tbody tr:nth-child(even) {
    background: #2b180f;
}

.rates-notes {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--color-muted);
}

.rates-notes p {
    margin-bottom: 0.8rem;
}

.rates-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.photo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.photo-strip-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    object-fit: cover;
    height: 180px;
}

/* ---------- LOCATION ---------- */

.location-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text h2 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1.4rem;
    margin-top: 0;
}

.location-text p {
    color: var(--color-muted);
}

.location-address {
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--color-light);
}

.location-warning {
    margin-top: 0.75rem;
    color: var(--color-accent);
}

.location-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.location-map .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 900px) {
    .location-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .location-text {
        flex: 3;
    }
    .location-map {
        flex: 4;
    }
}

/* ---------- FOOTER ---------- */

.site-footer {
    background: #0b0503;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    margin-top: 3rem;
    color: var(--color-muted);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr);
    gap: 2rem;
}

.footer-logo-block {
    display: inline-block;
    background: var(--color-accent);
    color: #20120a;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-family: 'Holtwood One SC', serif;
    margin-bottom: 0.5rem;
}

.footer-title {
    font-size: 0.95rem;
}

.footer-tagline {
    margin-top: 0;
}

.footer-contact a {
    color: var(--color-accent);
}

.footer-links h3,
.footer-social h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-social-icons .fa {
    color: var(--color-light);
}

.footer-reserve {
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding: 0.75rem 0;
    font-size: 0.8rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 900px) {
    .footer-inner {
        grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr) minmax(0, 1.8fr);
        align-items: flex-start;
    }
}

/* ---------- RESPONSIVE TWEAKS ---------- */

@media (min-width: 720px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 4.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}


body {
    font-size: 1.0625rem; /* ~17px instead of 16px */
}

/* Main paragraph-style text a little larger */
.hero-subtitle,
.section-intro,
.split-text p,
.about-text p,
.rates-notes p,
.location-text p,
.review-widget p,
main p {
    font-size: 1.175rem;
}

/* Table cells & card text slightly bumped too */
.card p,
.rates-table th,
.rates-table td,
.photo-grid-item-caption {
    font-size: 1.02rem;
}
.review-widget {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.review-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.review-btn {
    background: var(--color-accent);
    color: #000;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.review-btn:hover {
    background: #ffea57;
}

.google-review-embed {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
