@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #1e3a2f;
    --moss:   #3a6b4a;
    --stone:  #b0a898;
    --mist:   #f4f1ec;
    --water:  #4a7fa5;
    --gold:   #c9a84c;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--mist);
    color: var(--forest);
    font-weight: 300;
}

/* ── HEADER ── */
header {
    background-color: var(--forest);
    text-align: center;
    padding: 28px 20px 18px;
}

header img {
    max-width: 420px;
    width: 60%;
    height: auto;
}

/* ── NAV ── */
nav {
    background-color: var(--moss);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 24px;
    transition: background 0.2s;
}

nav a:hover {
    background-color: var(--gold);
    color: var(--forest);
}

nav a.active {
    background-color: var(--gold);
    color: var(--forest);
}

/* ── HERO IMAGE ── */
.hero {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ── MAIN CONTENT ── */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}

main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--forest);
    margin-bottom: 20px;
}

main p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #3b3b3b;
    margin-bottom: 24px;
}

/* ── OFFER LIST ── */
.offer-section {
    margin: 32px 0;
}

.offer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--forest);
}

.offer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.offer-section ul li a {
    display: inline-block;
    background-color: var(--forest);
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.offer-section ul li a:hover {
    background-color: var(--gold);
    color: var(--forest);
}

/* ── SUBMIT BUTTON ── */
.btn-submit {
    display: inline-block;
    background-color: var(--water);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 32px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: var(--moss);
}

/* ── VIDEO ── */
.video-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.video-wrapper iframe {
    width: 100%;
    max-width: 700px;
    height: 394px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(30, 58, 47, 0.18);
}

/* ── PHOTO GALLERY ── */
.photo-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.photo-gallery img {
    width: 30%;
    min-width: 200px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(30, 58, 47, 0.12);
}

/* ── EXTERNAL LINK ── */
.gear-link a {
    color: var(--water);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--water);
    transition: color 0.2s, border-color 0.2s;
}

.gear-link a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ── PHOTO GALLERY (activities pages) ── */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0;
}

.gallery-item {
    border: 1px solid var(--stone);
    border-radius: 4px;
    width: 200px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 58, 47, 0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 58, 47, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.gallery-item .desc {
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    background-color: #fff;
}

/* ── FOOTER ── */
footer {
    background-color: var(--forest);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 20px;
}

footer a img {
    height: 32px;
    width: 32px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}

footer a:hover img {
    opacity: 1;
    transform: scale(1.15);
}