@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg: #0b0d0c;
    --bg-soft: #111412;
    --text: #f1f1ed;
    --muted: #a8aca5;
    --line: rgba(255,255,255,.12);
    --accent: #a7a66a;
    --accent-light: #c5c38a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    padding: 8px 12px 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(11,13,12,.82);
    border: 1px solid var(--line);
    border-radius: 16px;
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .08em;
    white-space: nowrap;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 11px 13px;
    color: #c5c8c2;
    font-size: .88rem;
    border-radius: 9px;
    transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
    background: rgba(255,255,255,.08);
}

.main-nav a.active {
    box-shadow: inset 0 -2px 0 var(--accent);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 1.7rem;
    cursor: pointer;
}

.hero {
    min-height: 92vh;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(76,82,67,.22), transparent 42%),
        linear-gradient(180deg, #151916 0%, #080a09 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.78)),
        radial-gradient(circle at 50% 45%, transparent 0 18%, rgba(0,0,0,.48) 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.035) 50%, transparent 50.2%),
        linear-gradient(0deg, transparent 49.8%, rgba(255,255,255,.025) 50%, transparent 50.2%);
    background-size: 80px 80px;
    opacity: .35;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 80px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .22em;
}

h1, h2 {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    line-height: .9;
}

h1 {
    font-size: clamp(4.5rem, 12vw, 9rem);
    letter-spacing: .035em;
}

h2 {
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.hero-text {
    margin: 24px 0 32px;
    color: #d0d2cd;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 23px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--accent);
    color: #11130f;
}

.btn-primary:hover { background: var(--accent-light); }

.btn-outline {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.18);
}

.btn-outline:hover { background: rgba(255,255,255,.08); }

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #8e928b;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.scroll-hint span {
    display: block;
    width: 1px;
    height: 34px;
    margin: 0 auto 8px;
    background: var(--accent);
}

.section {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
    padding: 100px 0;
}

.section-heading { margin-bottom: 38px; }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-grid p { margin: 0; }

.feature {
    width: 100%;
    padding: 90px max(20px, calc((100% - 1100px) / 2));
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature > div { max-width: 680px; }

.feature p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 25px;
}

.site-footer {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
    padding: 36px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #858a83;
    font-size: .8rem;
}

.site-footer div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.site-footer strong {
    color: #d9dbd5;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    letter-spacing: .08em;
}

@media (max-width: 850px) {
    .site-header {
        top: 10px;
        min-height: 62px;
    }

    .brand img { width: 44px; height: 44px; }

    .menu-toggle { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        padding: 8px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(11,13,12,.96);
        border: 1px solid var(--line);
        border-radius: 14px;
        backdrop-filter: blur(16px);
    }

    .main-nav.open { display: flex; }

    .main-nav a { padding: 13px 15px; }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature {
        align-items: start;
        flex-direction: column;
    }

    .site-footer {
        flex-direction: column;
    }
}


/* ===== O NÁS ===== */

.page-hero {
    min-height: 58vh;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(94,100,75,.22), transparent 40%),
        linear-gradient(145deg, #151916, #080a09 70%);
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.72)),
        repeating-linear-gradient(135deg,
            transparent 0 38px,
            rgba(255,255,255,.018) 39px 40px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 20px 70px;
}

.page-hero h1 {
    font-size: clamp(4rem, 10vw, 7rem);
}

.page-hero-content > p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 24px;
}

.about-intro {
    padding-bottom: 70px;
}

.about-text {
    max-width: 900px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-text p {
    margin: 0 0 20px;
}

.about-cards {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    background: linear-gradient(145deg, #151916, #0e100f);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.about-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(167,166,106,.13);
    border-radius: 50%;
}

.card-number {
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: .14em;
}

.about-card h3,
.value h3 {
    margin: 35px 0 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.about-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .94rem;
}

.values-section {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100% - 1100px) / 2));
    padding-right: max(20px, calc((100% - 1100px) / 2));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.values-copy h2 {
    margin-top: 10px;
}

.values-list {
    display: flex;
    flex-direction: column;
}

.value {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 15px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.value:first-child {
    padding-top: 0;
}

.value > span {
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: .12em;
}

.value h3 {
    margin: 0 0 8px;
    font-size: 1.7rem;
}

.value p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .93rem;
}

.about-cta {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 95px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta h2 {
    margin-top: 8px;
    font-size: clamp(2.8rem, 6vw, 4.7rem);
}

@media (max-width: 850px) {
    .about-cards {
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }

    .about-card {
        min-height: auto;
    }

    .values-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 70px 0;
    }
}


/* ===== AKCIE ===== */

.events-hero {
    min-height: 52vh;
}

.events-intro {
    padding-bottom: 45px;
}

.events-lead {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.events-list {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 100px;
}

.event-card {
    position: relative;
    display: grid;
    grid-template-columns: 135px 1fr 70px;
    gap: 35px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(135deg, #151916, #0d100e);
    overflow: hidden;
}

.event-featured {
    border-color: rgba(167,166,106,.35);
    box-shadow: 0 25px 70px rgba(0,0,0,.22);
}

.event-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(167,166,106,.07), transparent 42%),
        repeating-linear-gradient(135deg,
            transparent 0 44px,
            rgba(255,255,255,.012) 45px 46px);
    pointer-events: none;
}

.event-date {
    position: relative;
    z-index: 1;
    align-self: start;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    border-right: 1px solid var(--line);
    font-family: 'Barlow Condensed', sans-serif;
    text-align: center;
}

.event-day {
    font-size: 5rem;
    line-height: .8;
    color: var(--text);
}

.event-month {
    margin-top: 13px;
    color: var(--accent-light);
    font-size: 1.15rem;
    letter-spacing: .15em;
}

.event-year {
    margin-top: 3px;
    color: #777c75;
    font-size: .9rem;
    letter-spacing: .1em;
}

.event-main {
    position: relative;
    z-index: 1;
}

.event-status {
    margin: 0 0 10px;
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .18em;
}

.event-main h2 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: 24px 0 18px;
    color: #d0d2cc;
    font-size: .9rem;
}

.event-description {
    max-width: 650px;
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.75;
}

.event-mark {
    position: relative;
    z-index: 1;
    align-self: start;
    color: rgba(197,195,138,.35);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    text-align: right;
}

.events-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 45px 0 22px;
    color: #777c75;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    letter-spacing: .16em;
}

.events-divider::before,
.events-divider::after {
    content: "";
    height: 1px;
    background: var(--line);
}

.events-divider::before {
    width: 35px;
}

.events-divider::after {
    flex: 1;
}

.event-placeholder {
    opacity: .72;
}

.event-placeholder .event-day {
    color: #777c75;
}

.events-note {
    width: 100%;
    padding: 85px max(20px, calc((100% - 1100px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.events-note h2 {
    margin-top: 8px;
    font-size: clamp(2.7rem, 6vw, 4.6rem);
}

@media (max-width: 750px) {
    .event-card {
        grid-template-columns: 85px 1fr;
        gap: 22px;
        padding: 28px 22px;
    }

    .event-date {
        padding-right: 20px;
    }

    .event-day {
        font-size: 3.8rem;
    }

    .event-mark {
        display: none;
    }

    .event-meta {
        flex-direction: column;
        gap: 9px;
    }

    .events-note {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 65px;
        padding-bottom: 65px;
    }
}


/* ===== DOBROVOĽNÍCTVO ===== */

.volunteer-hero {
    min-height: 55vh;
}

.volunteer-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.volunteer-lead {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
    padding-top: 12px;
}

.volunteer-lead p {
    margin: 0 0 22px;
}

.volunteer-roles {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 100px;
    border-top: 1px solid var(--line);
}

.volunteer-role {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 25px;
    padding: 34px 10px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

.volunteer-role:hover {
    background: rgba(255,255,255,.018);
}

.role-number,
.training-grid span {
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: .14em;
}

.volunteer-role h3 {
    margin: 0 0 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.15rem;
    text-transform: uppercase;
}

.volunteer-role p {
    max-width: 800px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.volunteer-training {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100% - 1100px) / 2));
    padding-right: max(20px, calc((100% - 1100px) / 2));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.training-heading h2 {
    margin-top: 10px;
}

.training-content > p {
    max-width: 720px;
    margin: 0 0 38px;
    color: var(--muted);
    line-height: 1.8;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.training-grid > div {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.015);
}

.training-grid h3 {
    margin: 22px 0 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.65rem;
    text-transform: uppercase;
}

.training-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
}

.volunteer-reward {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    align-items: start;
}

.reward-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(167,166,106,.45);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 1.35rem;
}

.volunteer-reward h2 {
    margin: 7px 0 18px;
    font-size: clamp(2.8rem, 6vw, 4.7rem);
}

.volunteer-reward > div:last-child p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.volunteer-cta {
    width: 100%;
    padding: 90px max(20px, calc((100% - 1100px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(135deg, #151916, #0b0d0c);
    border-top: 1px solid var(--line);
}

.volunteer-cta h2 {
    margin: 8px 0 18px;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.volunteer-cta p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 850px) {
    .volunteer-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .volunteer-role {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding-left: 0;
        padding-right: 0;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-training {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .volunteer-reward {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .volunteer-cta {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 70px;
        padding-bottom: 70px;
    }
}


/* ===== GALÉRIA ===== */

.gallery-hero {
    min-height: 50vh;
}

.gallery-section {
    padding-bottom: 110px;
}

.gallery-lead {
    margin: -20px 0 40px;
    color: var(--muted);
    font-size: .95rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    min-width: 0;
}

.gallery-item > a {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #111412;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.gallery-item > a:hover img {
    transform: scale(1.035);
    opacity: .86;
}

.gallery-caption {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 11px 3px 0;
}

.gallery-caption span {
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    letter-spacing: .12em;
}

.gallery-caption p {
    margin: 0;
    color: #aeb2ab;
    font-size: .83rem;
    line-height: 1.4;
}

@media (max-width: 850px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

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

/* ===== KONTAKT ===== */

.contact-hero {
    min-height: 50vh;
}

.contact-main {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.contact-intro h2 {
    margin-top: 8px;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.contact-intro > p:last-child {
    margin-top: 24px;
    color: var(--muted);
}

.contact-details {
    display: grid;
    gap: 0;
}

.contact-block {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.contact-block:first-child {
    padding-top: 0;
}

.contact-label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .8rem;
    letter-spacing: .17em;
}

.contact-block p {
    margin: 0;
    color: #d1d3ce;
    line-height: 1.7;
}

.contact-block a {
    color: #d1d3ce;
    border-bottom: 1px solid rgba(197,195,138,.45);
    transition: color .2s ease;
}

.contact-block a:hover {
    color: var(--accent-light);
}

.contact-register {
    padding-top: 80px;
    padding-bottom: 100px;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.register-item {
    min-height: 120px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    background: var(--bg);
}

.register-item span {
    color: var(--accent-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.register-item strong {
    color: #d2d4cf;
    font-size: .94rem;
    line-height: 1.55;
    font-weight: 500;
}

.contact-join {
    width: 100%;
    padding: 90px max(20px, calc((100% - 1100px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(135deg, #151916, #0b0d0c);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-join h2 {
    margin: 8px 0 18px;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.contact-join p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 850px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .register-grid {
        grid-template-columns: 1fr;
    }

    .contact-join {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
