/*
Theme Name: Webbfabriken Booking Demo
Theme URI: https://webbfabriken.se/
Author: Webbfabriken
Author URI: https://webbfabriken.se/
Description: Local demo theme for Webbfabriken Easy Booking.
Version: 0.1.0
Text Domain: wfeb-demo
*/

:root {
    --wf-bg: #f6f2e8;
    --wf-surface: #fffaf0;
    --wf-forest: #0f2a20;
    --wf-forest-2: #244333;
    --wf-ink: #1d1a16;
    --wf-muted: #5c6259;
    --wf-rust: #b85b35;
    --wf-blue: #2d3f54;
    --wf-line: rgba(15, 42, 32, 0.16);
    --wf-shadow: 0 22px 55px rgba(15, 42, 32, 0.15);
    --wf-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--wf-bg);
    color: var(--wf-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

a {
    color: inherit;
}

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

.site-shell {
    overflow: hidden;
}

.site-header {
    align-items: center;
    color: #fffaf0;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 0;
    padding: 22px min(6vw, 72px);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.site-brand {
    align-items: center;
    display: inline-flex;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 10px;
    text-decoration: none;
}

.site-brand__mark {
    align-items: center;
    background: rgba(255, 250, 240, 0.14);
    border: 1px solid rgba(255, 250, 240, 0.38);
    border-radius: 50%;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 22px;
}

.site-nav a {
    color: rgba(255, 250, 240, 0.88);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    color: #fff;
}

.hero {
    background-image:
        linear-gradient(90deg, rgba(9, 26, 19, 0.88), rgba(9, 26, 19, 0.58) 48%, rgba(9, 26, 19, 0.18)),
        url("assets/images/cabin-lake-hero.jpg");
    background-position: center;
    background-size: cover;
    color: #fffaf0;
    min-height: 68vh;
    padding: 144px min(6vw, 72px) 72px;
    position: relative;
}

.hero__inner {
    max-width: 760px;
}

.eyebrow {
    color: #f0c08f;
    font-size: 0.88rem;
    font-weight: 800;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1.02;
    margin: 0;
    max-width: 720px;
}

.hero__text {
    color: rgba(255, 250, 240, 0.88);
    font-size: 1.18rem;
    margin: 22px 0 0;
    max-width: 610px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    align-items: center;
    border-radius: var(--wf-radius);
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 11px 18px;
    text-decoration: none;
}

.button--primary {
    background: var(--wf-rust);
    color: #fffaf0;
}

.button--secondary {
    border: 1px solid rgba(255, 250, 240, 0.48);
    color: #fffaf0;
}

.stats-strip {
    background: var(--wf-forest);
    color: #fffaf0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    border-right: 1px solid rgba(255, 250, 240, 0.16);
    padding: 26px min(4vw, 46px);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.1;
}

.stat span {
    color: rgba(255, 250, 240, 0.7);
    display: block;
    font-size: 0.92rem;
    margin-top: 4px;
}

.section {
    padding: 82px min(6vw, 72px);
}

.section--light {
    background: var(--wf-surface);
}

.section__head {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto 34px;
    max-width: 1160px;
}

.section__head h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1.1;
    margin: 0;
}

.section__head p {
    color: var(--wf-muted);
    margin: 0;
    max-width: 460px;
}

.package-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1160px;
}

.package {
    background: #fff;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    box-shadow: 0 12px 30px rgba(15, 42, 32, 0.06);
    display: grid;
    gap: 18px;
    padding: 26px;
}

.package h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    margin: 0;
}

.package p {
    color: var(--wf-muted);
    margin: 0;
}

.package__price {
    color: var(--wf-forest);
    font-size: 1.55rem;
    font-weight: 900;
}

.package ul {
    color: var(--wf-muted);
    margin: 0;
    padding-left: 18px;
}

.package__link {
    align-self: end;
    background: var(--wf-forest);
    border-radius: var(--wf-radius);
    color: #fffaf0;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    text-decoration: none;
}

.booking-section {
    background:
        linear-gradient(135deg, rgba(36, 67, 51, 0.96), rgba(45, 63, 84, 0.96)),
        var(--wf-forest);
    color: #fffaf0;
    padding: 82px min(6vw, 72px);
}

.booking-layout {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
    margin: 0 auto;
    max-width: 1160px;
}

.booking-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
    line-height: 1.08;
    margin: 0;
}

.booking-copy p {
    color: rgba(255, 250, 240, 0.78);
    margin: 18px 0 0;
    max-width: 560px;
}

.booking-notes {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.booking-note {
    border: 1px solid rgba(255, 250, 240, 0.16);
    border-radius: var(--wf-radius);
    padding: 14px 16px;
}

.booking-note strong {
    display: block;
}

.booking-note span {
    color: rgba(255, 250, 240, 0.7);
    display: block;
    font-size: 0.94rem;
}

.booking-panel {
    background: #fffaf0;
    border-radius: var(--wf-radius);
    box-shadow: var(--wf-shadow);
    color: var(--wf-ink);
    padding: 28px;
}

.booking-panel h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    margin: 0 0 18px;
}

.wfeb-booking-form {
    max-width: none;
}

.wfeb-booking-form label {
    color: var(--wf-forest);
    font-size: 0.94rem;
    font-weight: 800;
}

.wfeb-booking-form input,
.wfeb-booking-form select,
.wfeb-booking-form textarea {
    background: #fff;
    border: 1px solid rgba(15, 42, 32, 0.22);
    border-radius: 6px;
    color: var(--wf-ink);
    min-height: 46px;
    padding: 10px 12px;
}

.wfeb-button {
    background: var(--wf-rust);
    border: 0;
    border-radius: var(--wf-radius);
    color: #fffaf0;
    cursor: pointer;
    font-weight: 900;
    min-height: 48px;
    padding: 12px 18px;
}

.wfeb-booking-form__event {
    background: rgba(15, 42, 32, 0.06);
    border-color: rgba(15, 42, 32, 0.16);
    color: var(--wf-forest);
}

.wfeb-booking-form__event span {
    color: var(--wf-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(9, 26, 19, 0.92), rgba(9, 26, 19, 0.58)),
        url("assets/images/cabin-lake-hero.jpg");
    background-position: center;
    background-size: cover;
    color: #fffaf0;
    padding: 142px min(6vw, 72px) 70px;
}

.page-hero__inner {
    margin: 0 auto;
    max-width: 1160px;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.45rem;
    line-height: 1.05;
    margin: 0;
}

.page-content {
    margin: 0 auto;
    max-width: 1160px;
}

.wfeb-events-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wfeb-event-card {
    background: #fff;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    box-shadow: 0 12px 30px rgba(15, 42, 32, 0.06);
    color: var(--wf-ink);
    display: grid;
    gap: 20px;
    padding: 26px;
}

.wfeb-event-card h2,
.wfeb-event-detail h1,
.wfeb-event-detail h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.wfeb-event-card h2 {
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 0;
}

.wfeb-event-card p,
.wfeb-event-detail p,
.wfeb-event-detail li {
    color: var(--wf-muted);
}

.wfeb-event-card__meta {
    color: var(--wf-rust);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.wfeb-event-card__footer {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.wfeb-event-card__footer strong {
    color: var(--wf-forest);
    font-size: 1.35rem;
}

.wfeb-event-card__link,
.wfeb-event-detail__button {
    background: var(--wf-rust);
    border-radius: var(--wf-radius);
    color: #fffaf0;
    display: inline-flex;
    font-weight: 900;
    min-height: 44px;
    padding: 10px 14px;
    text-decoration: none;
}

.wfeb-event-detail {
    display: grid;
    gap: 30px;
}

.wfeb-event-detail__header {
    background: #fff;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    box-shadow: 0 12px 30px rgba(15, 42, 32, 0.06);
    display: grid;
    gap: 18px;
    padding: 30px;
}

.wfeb-event-detail h1 {
    font-size: 2.7rem;
    line-height: 1.08;
    margin: 0;
}

.wfeb-event-detail__button {
    justify-self: start;
}

.wfeb-event-detail__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wfeb-event-detail__grid section {
    background: #fff;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    padding: 24px;
}

.wfeb-event-detail__grid h2 {
    font-size: 1.45rem;
    margin: 0 0 12px;
}

.experience-band {
    background: var(--wf-bg);
}

.experience-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 1160px;
}

.experience-media {
    min-height: 440px;
}

.experience-media img {
    border-radius: var(--wf-radius);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.experience-copy {
    align-self: center;
}

.experience-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1.1;
    margin: 0;
}

.experience-copy p {
    color: var(--wf-muted);
    margin: 18px 0 0;
}

.site-footer {
    background: #111917;
    color: rgba(255, 250, 240, 0.74);
    padding: 34px min(6vw, 72px);
}

.site-footer__inner {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1160px;
}

@media (max-width: 920px) {
    .site-header {
        position: absolute;
    }

    .site-nav {
        display: none;
    }

    .hero {
        min-height: 72vh;
        padding-top: 126px;
    }

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

    .stats-strip,
    .package-grid,
    .booking-layout,
    .experience-grid,
    .wfeb-events-list,
    .wfeb-event-detail__grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-bottom: 1px solid rgba(255, 250, 240, 0.16);
        border-right: 0;
    }

    .section__head {
        align-items: start;
        display: grid;
    }

    .booking-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .site-header {
        padding: 18px 20px;
    }

    .hero,
    .section,
    .booking-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .hero__text {
        font-size: 1.05rem;
    }

    .section__head h2,
    .booking-copy h2,
    .experience-copy h2,
    .page-hero h1,
    .wfeb-event-detail h1 {
        font-size: 2rem;
    }

    .booking-panel {
        padding: 20px;
    }
}
