/* ---------------------------------------------------------------
   Nantahala Glamping — custom styles, layered on top of Solo's
   compiled screen.css. Plain CSS, no build step required: edit
   this file directly and refresh, nothing to compile.
   ------------------------------------------------------------- */

:root {
    --ng-bg: #faf6ee;
    --ng-bg-alt: #f1ead9;
    --ng-text: #23281f;
    --ng-text-muted: rgba(35, 40, 31, 0.64);
    --ng-border: rgba(35, 40, 31, 0.14);
    --ng-accent: var(--ghost-accent-color, #035815);
    --ng-accent-dark: #023d0e;
    --ng-card-bg: #ffffff;
    --ng-radius: 14px;
    --ng-radius-lg: 22px;
}

body {
    color: var(--ng-text);
}

/* Always use the serif/sans pairing the theme ships with, regardless
   of the (now-unused) typography customizer toggle. */
h1, h2, h3, h4, h5, h6,
.gh-head-logo {
    font-family: var(--font-serif);
    letter-spacing: -0.01em;
}

.gh-article-title,
.ng-section-title,
.ng-hero-title {
    font-family: var(--font-serif);
}

a {
    color: var(--ng-accent-dark);
}

/* ---------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------- */

.gh-head {
    background-color: var(--ng-bg);
    border-bottom: 1px solid var(--ng-border);
}

.gh-head-menu a:hover {
    color: var(--ng-accent);
    opacity: 1;
}

.ng-head-contact {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--ng-accent-dark);
    white-space: nowrap;
}

.ng-head-contact:hover {
    color: var(--ng-accent);
}

/* ---------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */

.ng-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.3rem 2.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    line-height: 1;
    border: 2px solid transparent;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.ng-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.ng-btn-primary {
    background-color: var(--ng-accent);
    color: #fff;
}

.ng-btn-outline {
    border-color: currentColor;
    color: inherit;
}

.ng-btn-outline.ng-on-dark {
    color: #fff;
}

.ng-btn-lg {
    padding: 1.6rem 3.2rem;
    font-size: 1.7rem;
}

/* ---------------------------------------------------------------
   Hero (home page)
   ------------------------------------------------------------- */

.ng-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 86vh;
    color: #fff;
    background-size: cover;
    background-position: center;
    margin-top: calc(-1 * var(--header-spacing, 8rem));
    padding-top: var(--header-spacing, 8rem);
}

.ng-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 10, 0.35) 0%, rgba(10, 18, 10, 0.55) 55%, rgba(8, 14, 8, 0.75) 100%);
    z-index: 0;
}

.ng-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 6rem var(--gap) 8rem;
    text-align: center;
}

.ng-eyebrow {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    opacity: 0.9;
}

.ng-hero-title {
    font-size: clamp(3.6rem, 3rem + 2.4vw, 6rem);
    line-height: 1.05;
    margin-bottom: 2rem;
}

.ng-hero-tagline {
    font-size: clamp(1.7rem, 1.5rem + 0.5vw, 2.1rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 60ch;
    margin: 0 auto 3.6rem;
}

.ng-hero-ctas {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .ng-hero {
        min-height: 72vh;
    }
}

/* ---------------------------------------------------------------
   Sections
   ------------------------------------------------------------- */

.ng-section {
    padding: clamp(5rem, 4rem + 3vw, 9rem) var(--gap);
}

.ng-section-alt {
    background-color: var(--ng-bg-alt);
}

.ng-section-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.ng-section-head {
    max-width: 640px;
    margin: 0 auto 4.8rem;
    text-align: center;
}

.ng-section-title {
    font-size: clamp(2.8rem, 2.4rem + 1vw, 3.8rem);
    margin-bottom: 1.4rem;
}

.ng-section-lede {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--ng-text-muted);
}

.ng-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 1.8rem + 0.5vw, 2.4rem);
    line-height: 1.55;
}

/* ---------------------------------------------------------------
   Highlight / amenity cards
   ------------------------------------------------------------- */

.ng-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

.ng-highlight-card {
    background-color: var(--ng-card-bg);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 3.2rem 2.4rem;
    text-align: center;
}

.ng-highlight-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.8rem;
    color: var(--ng-accent);
}

.ng-highlight-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}

.ng-highlight-card h3 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
}

.ng-highlight-card p {
    font-size: 1.5rem;
    color: var(--ng-text-muted);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .ng-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ng-highlights {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------
   Photo grid
   ------------------------------------------------------------- */

.ng-photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
    gap: 1.2rem;
}

.ng-photo-grid a,
.ng-photo-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--ng-radius);
}

.ng-photo-grid .ng-span-2 {
    grid-column: span 2;
}

.ng-photo-grid .ng-span-3 {
    grid-column: span 3;
}

.ng-photo-grid .ng-row-2 {
    grid-row: span 2;
}

@media (max-width: 767px) {
    .ng-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .ng-photo-grid .ng-span-2,
    .ng-photo-grid .ng-span-3 {
        grid-column: span 1;
    }

    .ng-photo-grid .ng-row-2 {
        grid-row: span 1;
    }
}

/* ---------------------------------------------------------------
   Stats row
   ------------------------------------------------------------- */

.ng-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    text-align: center;
}

.ng-stat-num {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 2.6rem + 1vw, 4.2rem);
    color: var(--ng-accent-dark);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.ng-stat-label {
    font-size: 1.4rem;
    color: var(--ng-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 767px) {
    .ng-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3.6rem;
    }
}

/* ---------------------------------------------------------------
   CTA band
   ------------------------------------------------------------- */

.ng-cta-band {
    background-color: var(--ng-accent-dark);
    color: #fff;
    border-radius: var(--ng-radius-lg);
    text-align: center;
    padding: clamp(4rem, 3.4rem + 3vw, 7rem) clamp(2.4rem, 2rem + 2vw, 5rem);
}

.ng-cta-band .ng-section-title {
    color: #fff;
}

.ng-cta-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.7rem;
    max-width: 56ch;
    margin: 0 auto 3.2rem;
}

.ng-cta-actions {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   Interior pages — amenities groups
   ------------------------------------------------------------- */

.ng-amenity-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 4.8rem;
    margin: 3.2rem 0;
}

.ng-amenity-group h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--ng-border);
}

.ng-amenity-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.ng-amenity-group li {
    position: relative;
    padding-left: 2.6rem;
    font-size: 1.55rem;
    line-height: 1.4;
}

.ng-amenity-group li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: var(--ng-accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
}

.ng-note {
    background-color: var(--ng-bg-alt);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 1.8rem 2.2rem;
    font-size: 1.5rem;
    color: var(--ng-text-muted);
    margin: 2.4rem 0;
}

.ng-note strong {
    color: var(--ng-text);
}

/* Placeholder text I couldn't verify (pricing, exact contacts, etc.) */
.ng-tbd {
    background-color: #fdf1d6;
    border: 1px dashed #c99a2e;
    color: #6b4e04;
    padding: 0.1rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
}

/* ---------------------------------------------------------------
   Distance table (Location page)
   ------------------------------------------------------------- */

.ng-distance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.ng-distance-table th {
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ng-text-muted);
    padding: 1rem 1.2rem;
    border-bottom: 2px solid var(--ng-border);
}

.ng-distance-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--ng-border);
}

.ng-distance-table tr:hover td {
    background-color: var(--ng-bg-alt);
}

.ng-distance-table td:nth-child(2),
.ng-distance-table td:nth-child(3),
.ng-distance-table th:nth-child(2),
.ng-distance-table th:nth-child(3) {
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: var(--ng-text-muted);
}

.ng-distance-table td:first-child {
    font-weight: 700;
}

/* ---------------------------------------------------------------
   Handbook
   ------------------------------------------------------------- */

.ng-handbook .gh-content h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
    font-weight: 800;
    color: var(--ng-accent-dark);
    margin-top: 4rem;
    padding-top: 2.4rem;
    border-top: 1px solid var(--ng-border);
}

.ng-handbook .gh-content > *:first-child h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.ng-privacy-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background-color: var(--ng-bg-alt);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 1.6rem 2rem;
    font-size: 1.4rem;
    color: var(--ng-text-muted);
    margin-bottom: 3.2rem;
}

.ng-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0;
    display: grid;
    gap: 0.6rem;
    font-size: 1.7rem;
}

.ng-contact-list a {
    font-weight: 700;
}

/* ---------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */

.gh-foot {
    background-color: var(--ng-bg-alt);
    border-top: 1px solid var(--ng-border);
}
