/* =========================================================
   Camp Bukovica — design tokens
   Palette: deep forest green + warm gold + rust-clay accent
   on a warm stone-cream field. Type: Fraunces (display) / Work Sans (body)
   Signature motif: topographic contour lines, echoing the
   camp's setting in Kozara's hills, used as section dividers.
   ========================================================= */
:root {
    --clr-forest: #33422c;
    --clr-forest-dark: #202a1b;
    --clr-gold: #c99a3e;
    --clr-gold-light: #e0bc61;
    --clr-clay: #a8562f;
    --clr-cream: #f4efe1;
    --clr-cream-dark: #ece3cd;
    --clr-ink: #241f18;
    --clr-river: #4d6b5c;

    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-soft: 0 10px 30px rgba(32, 26, 15, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: var(--font-body);
    color: var(--clr-ink);
    background: var(--clr-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--clr-forest-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--clr-forest);
    color: #fff;
    padding: 10px 16px;
    z-index: 2000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
}

:focus-visible {
    outline: 3px solid var(--clr-gold);
    outline-offset: 2px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--clr-clay);
    margin-bottom: 0.5rem;
}

.section-sub {
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    color: var(--clr-forest);
    font-weight: 600;
}

/* Buttons */
.btn-cta {
    background: var(--clr-clay);
    border: 1px solid var(--clr-clay);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:hover,
.btn-cta:focus {
    background: #8f4626;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    width: 100%;
    max-width: 320px;
}

@media (min-width: 992px) {
    .hero-actions {
        flex-direction: row;
        align-items: stretch;
        max-width: none;
        gap: 1rem;
        justify-content: center;
    }
}

.hero-section .btn-light,
.hero-section .btn-outline-light {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.75rem;
    width: 100%;
    border-width: 2px;
    border-style: solid;
    line-height: 1.3;
}
.hero-section .btn-light {
    border-color: #fff;
}
@media (min-width: 992px) {
    .hero-section .btn-light,
    .hero-section .btn-outline-light {
        width: auto;
    }
}
.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* =========================================================
   Navbar
   ========================================================= */
#siteNav {
    background-color: var(--clr-cream);
    border-bottom: 1px solid rgba(32, 26, 15, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    transition: box-shadow 0.25s ease, padding 0.25s ease;
}
#siteNav.scrolled {
    box-shadow: 0 4px 18px rgba(32, 26, 15, 0.08);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--clr-forest-dark) !important;
}

.nav-link {
    color: var(--clr-ink) !important;
    font-weight: 500;
    position: relative;
}
.nav-link.active,
.nav-link:hover {
    color: var(--clr-clay) !important;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--clr-clay);
    border-radius: 2px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero-section {
    position: relative;
    background-image: linear-gradient(180deg, rgba(20, 24, 14, 0.55), rgba(20, 24, 14, 0.65)), url("photo1.jpg");
    background-size: cover;
    background-position: center;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.hero-eyebrow {
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-gold-light);
    margin-bottom: 0.75rem;
}

.hero-section h1 {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 0.75rem;
}

.hero-sub {
    max-width: 46ch;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    opacity: 0.85;
    animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* =========================================================
   Reconnect / intro band
   ========================================================= */
.reconnect-section {
    background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-forest-dark) 100%);
    padding: clamp(48px, 8vw, 96px) 1rem;
}
.reconnect-section h2 {
    color: #fff;
}
.reconnect-tagline {
    letter-spacing: 0.15em;
    color: var(--clr-gold-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.reconnect-copy {
    max-width: 62ch;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.92;
}

/* =========================================================
   Amenities
   ========================================================= */
.amenities-cards {
    border: 1px solid rgba(51, 66, 44, 0.12);
    box-shadow: 0 2px 10px rgba(32, 26, 15, 0.06);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 32px 24px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amenities-cards:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.amenities-cards h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.amenities-cards p {
    color: #5c5344;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.icon {
    width: 66px;
    height: 66px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
}

/* =========================================================
   Food
   ========================================================= */
.foodsection {
    display: flex;
    flex-wrap: wrap;
}

.foodphoto {
    min-height: 360px;
    flex: 1 1 380px;
    background: url("sacphoto.jpg") no-repeat center;
    background-size: cover;
}

.foodtext {
    flex: 1 1 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 100px);
    background-color: var(--clr-cream-dark);
}

.foodlist {
    max-width: 520px;
}

.foodlist .section-sub {
    margin-bottom: 0;
}

.foodmenu {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.foodarticle h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.foodarticle p {
    color: #5c5344;
    margin-bottom: 0;
}

/* =========================================================
   Location / map
   ========================================================= */
.mapsection {
    background: linear-gradient(135deg, rgba(244, 239, 225, 0.94), rgba(244, 239, 225, 0.88)), url("topographicphoto.jpg") no-repeat center;
    background-size: cover;
    color: var(--clr-ink);
    padding: clamp(48px, 6vw, 96px) 0;
    position: relative;
}

.mapmenu {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(8px, 2vw, 36px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

@media (max-width: 860px) {
    .mapmenu {
        grid-template-columns: 1fr;
    }
}

.mapheder h2 {
    margin: 0.4rem 0 0.6rem;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.15;
}

.mapheder p {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1rem);
    color: #4a4436;
}

.tekst {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    border: 1px solid rgba(35, 29, 29, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 2.5vw, 32px);
    background: #fff;
    box-shadow: var(--shadow-soft);
    color: var(--clr-ink);
}

.tekst ol {
    padding-left: 1.2rem;
    margin: 0;
    font-size: clamp(0.9rem, 1.6vw, 0.98rem);
    color: #4a4436;
}
.tekst ol li + li {
    margin-top: 6px;
}

.tekst .eta {
    font-size: clamp(0.85rem, 1.5vw, 0.92rem);
    color: var(--clr-forest);
    font-weight: 600;
    border-top: 1px dashed rgba(35, 29, 29, 0.18);
    padding-top: 12px;
}

.googlemap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-frame {
    width: 100%;
    max-width: 900px;
    height: 0;
    padding-bottom: 65%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(35, 29, 29, 0.12);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
   Activities
   ========================================================= */
.activ-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.4rem;
}

.activities {
    padding: clamp(64px, 10vw, 120px) 0;
}

.active-info {
    background-color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
}

.activ-subtitle {
    flex: 1 1 380px;
    padding: clamp(36px, 5vw, 80px) clamp(24px, 4vw, 60px);
}

.activ-kicker {
    letter-spacing: 0.18em;
    color: var(--clr-clay);
    font-weight: 700;
    text-transform: uppercase;
}

.activ-copy {
    color: #4a4436;
}

.garden-list {
    list-style: none;
    text-align: start;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.garden-list li {
    position: relative;
    padding-left: 1.5rem;
}
.garden-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-gold);
}

.active-photo {
    background: url("activephoto.jpg") no-repeat center;
    background-size: cover;
    flex: 1 1 380px;
    min-height: 320px;
}

/* =========================================================
   Gallery
   ========================================================= */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

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

.gallery-items {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    cursor: pointer;
}

.gallery-items:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 480px) {
    .gallery-items:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-items:hover img {
    transform: scale(1.06);
}

/* =========================================================
   Contact
   ========================================================= */
.contact-section {
    padding: clamp(56px, 8vw, 110px) 0;
    background: var(--clr-cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-intro h2 {
    margin-bottom: 0.75rem;
}

.contact-copy {
    color: #4a4436;
    max-width: 56ch;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(51, 66, 44, 0.12);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-decoration: none;
    color: var(--clr-ink);
    box-shadow: 0 2px 10px rgba(32, 26, 15, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    color: var(--clr-clay);
}

.contact-item-static {
    cursor: default;
}
.contact-item-static:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(32, 26, 15, 0.06);
}

.contact-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(169, 86, 47, 0.12);
    color: var(--clr-clay);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-forest);
    font-weight: 700;
}

.contact-value {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--clr-forest-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0;
    text-align: center;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--clr-forest);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1040;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--clr-clay);
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}