/* ================================================================
   BUBA ŠARATON — stylesheet
   Paleta: cream / pink / red / yellow / blue / green
   Fontovi: Roboto (body + headings)
   ================================================================ */

/* -------- 1. RESET & TOKENS ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --cream:  #e9e3cf;
    --cream-soft: #f3efdf;
    --pink:   #e4bfcc;
    --pink-soft: #f2dbe3;
    --red:    #e83f3a;
    --yellow: #fbba00;
    --blue:   #426a9d;
    --green:  #005e37;
    --ink:    #1a1a1a;
    --ink-soft: #4a4a4a;
    --white:  #ffffff;

    --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-heading: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-hand: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

    --text-size: 15px;
    --text-line-height: 1.6;
    --text-letter-spacing: 0.6px;
    --title-size: 40px;
    --title-line-height: 1.1;
    --title-letter-spacing: 0.3px;
    --content-pad-y: 27px;
    --content-pad-x: 27px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 36px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 10px rgba(26, 26, 26, 0.08);
    --shadow-md: 0 10px 30px rgba(26, 26, 26, 0.12);
    --shadow-hard: 6px 6px 0 var(--ink);

    --nav-h: 72px;
    --container: 1180px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-size);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: var(--title-line-height);
    letter-spacing: var(--title-letter-spacing);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--content-pad-x);
}
@media (max-width: 480px) {
    .container { padding: 0 var(--content-pad-x); }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--cream);
    padding: 10px 16px;
    border-radius: 0 0 8px 0;
    z-index: 999;
}
.skip-link:focus { left: 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* -------- 2. HANDWRITTEN ACCENT -------------------------------- */
.handwritten {
    font-family: var(--font-hand);
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    color: var(--red);
    letter-spacing: 0;
}

/* -------- 3. BUTTONS ------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: 2.5px solid var(--ink);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}
.btn-primary {
    background: var(--green);
    color: var(--cream);
    box-shadow: var(--shadow-hard);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--green);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
}
.btn-outline:hover,
.btn-outline:focus {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

/* -------- 4. NAVBAR (mobile-first) ----------------------------- */
:root { --nav-h: 88px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(233, 227, 207, 0.92);
    backdrop-filter: saturate(1.2) blur(8px);
    -webkit-backdrop-filter: saturate(1.2) blur(8px);
    border-bottom: none;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 16px;
    position: relative;
}
.nav-logo { overflow: visible; flex: 0 0 auto; }
.nav-logo img {
    height: 72px;
    width: auto;
    display: block;
}
.nav-logo:hover { transform: rotate(-2deg); }

/* Mobile-first: hamburger visible, menu hidden off-screen */
.nav-toggle {
    display: flex;
    background: none;
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-menu {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    padding: 16px 24px;
    transform: translateY(-140%);
    transition: transform 0.3s var(--ease);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 49;
}
.nav-menu.is-open { transform: translateY(0); }
.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.05rem;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-menu a:hover,
.nav-menu a:focus {
    background: var(--yellow);
    color: var(--ink);
}

/* Desktop override */
@media (min-width: 1025px) {
    :root { --nav-h: 72px; }
    .nav-logo img { height: 96px; }
    .nav-toggle { display: none; }
    .nav-menu {
        position: static;
        background: transparent;
        border-bottom: none;
        padding: 0;
        transform: none;
        box-shadow: none;
    }
    .nav-menu ul { flex-direction: row; gap: 8px; }
    .nav-menu a { display: inline-block; padding: 10px 18px; font-size: 1rem; }
}

/* -------- 5. HERO ---------------------------------------------- */
.hero {
    position: relative;
    padding: clamp(40px, 6vw, 80px) 0 0;
    background: var(--cream);
}
.hero-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.deco-star {
    position: absolute;
    width: 16px;
    opacity: 0.55;
}
.deco-star-1 { top: 12%;  left: 6%;  width: 14px; }
.deco-star-2 { top: 28%;  left: 48%; width: 10px; }
.deco-star-3 { top: 60%;  left: 4%;  width: 18px; }
.deco-star-4 { top: 18%;  right: 8%; width: 12px; }
.deco-star-5 { top: 72%;  right: 14%; width: 16px; }

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 14px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.hero-title {
    font-size: var(--title-size);
    line-height: var(--title-line-height);
    letter-spacing: var(--title-letter-spacing);
    margin: 0 0 28px;
    color: var(--ink);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
.hero-title-accent {
    color: var(--ink);
    display: inline-block;
    position: relative;
}
.hero-title-accent::after {
    content: none;
}

.hero-bubbles {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 0 32px;
}
.bubble {
    display: inline-block;
    width: 230px;
    height: 142px;
    padding: 0;
    background: url("../images/baloncek.png") center / 100% 100% no-repeat;
    font-weight: 700;
    font-size: 1.08rem;
    line-height: 1.2;
    text-align: center;
    position: relative;
    transform: rotate(-2deg);
}
.bubble-text {
    position: absolute;
    left: 50%;
    top: 57%;
    width: 72%;
    transform: translate(-50%, -50%);
    display: block;
    text-align: center;
}
.bubble::before {
    content: none;
}
.bubble-b {
    width: 205px;
    height: 128px;
    padding: 32px 34px 24px;
    transform: rotate(3deg);
}
.bubble-b .bubble-text {
    top: 58%;
    width: 68%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-animation {
    display: block;
    width: min(100%, 520px);
    height: auto;
}

/* -------- 6. WAVE DIVIDER -------------------------------------- */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 86px;
    position: relative;
    padding: 0;
    clear: both;
}
.wave-divider img {
    display: block;
    width: min(1280px, calc(100% + 180px));
    max-width: none;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* -------- 7. GENERIC SECTION STYLES ---------------------------- */
.section {
    position: relative;
    padding: 80px 0 60px;
}
.section-about   { background: var(--cream); }
.section-prijave { background: var(--cream-soft); }
.section-kontakt { background: var(--cream); padding-bottom: 100px; }

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}
.section-kicker {
    display: inline-block;
    padding: 4px 14px;
    background: var(--red);
    color: var(--cream);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.section-title {
    font-size: var(--title-size);
    line-height: var(--title-line-height);
    letter-spacing: var(--title-letter-spacing);
    margin: 0 0 16px;
    color: var(--ink);
}
.section-title .handwritten {
    font-size: 1.15em;
    display: inline-block;
    transform: rotate(-3deg);
    margin: 0 4px;
}
.section-lead {
    font-size: var(--text-size);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    color: var(--ink-soft);
    margin: 0;
}
.section-subtitle {
    font-size: var(--title-size);
    line-height: var(--title-line-height);
    letter-spacing: var(--title-letter-spacing);
    text-align: center;
    margin: 72px 0 32px;
    color: var(--blue);
}
.section-subtitle::before,
.section-subtitle::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0 8px -5px;
    background: url("../images/zvijezda.png") center / contain no-repeat;
}

/* -------- 8. CIRCLES ------------------------------------------- */
.circles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 72px;
    justify-items: center;
}
.circle {
    position: relative;
    width: min(220px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--yellow);
    font-weight: 900;
    padding: 24px;
    transition: transform 0.3s var(--ease);
}
.circle:hover { transform: rotate(-3deg) scale(1.03); }
.circle-green { background: var(--green); }
.circle-red   { background: var(--red); }
.circle-blue  { background: var(--blue); }

.circle-big {
    font-family: var(--font-hand);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    line-height: 0.9;
    color: var(--yellow);
}
.circle-small {
    font-family: var(--font-hand);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1;
    color: var(--cream);
    margin-top: 6px;
}
.circle-star {
    position: absolute;
    width: 54px;
    top: -14px;
    right: 12px;
    transform: rotate(12deg);
}

/* -------- 9. GOALS CARD ---------------------------------------- */
.goals-card {
    background: var(--pink-soft);
    border-radius: var(--radius-lg);
    padding: var(--content-pad-y) var(--content-pad-x);
    margin: 0 auto 48px;
    max-width: 900px;
    position: relative;
}
.goals-card::before,
.goals-card::after {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    background: url("../images/zvijezda.png") center / contain no-repeat;
}
.goals-card::before { top: -20px; left: 28px; }
.goals-card::after  { bottom: -20px; right: 34px; }
.goals-lines {
    position: absolute;
    top: -48px;
    right: -26px;
    width: 130px;
    max-width: 28vw;
    pointer-events: none;
}
.goals-title {
    font-size: var(--title-size);
    line-height: var(--title-line-height);
    letter-spacing: var(--title-letter-spacing);
    color: var(--red);
    margin: 0 0 20px;
    text-align: center;
    transform: rotate(-1deg);
}
.goals-list li {
    position: relative;
    padding: 10px 10px 10px 38px;
    font-size: var(--text-size);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    font-weight: 900;
    border-bottom: 1.5px dashed rgba(26,26,26,0.2);
}
.goals-list li:last-child { border-bottom: none; }
.goals-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 13px;
    width: 24px;
    height: 24px;
    background: url("../images/zvjezdica.png") center / contain no-repeat;
}

/* -------- 10. STEPS -------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
    counter-reset: step;
}
.step {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--content-pad-y) var(--content-pad-x);
    position: relative;
    transition: transform 0.25s var(--ease);
}
.step:hover { transform: translate(-2px, -4px); }
.step-num {
    position: absolute;
    top: -18px;
    left: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    border: 3px solid var(--ink);
    display: grid;
    place-items: center;
    font-family: var(--font-hand);
    font-weight: 700;
    font-size: 1.6rem;
}
.step-1 .step-num { background: var(--yellow); }
.step-2 .step-num { background: var(--red); color: var(--cream); }
.step-3 .step-num { background: var(--blue); color: var(--cream); }
.step-4 .step-num { background: var(--green); color: var(--cream); }
.step h4 {
    margin: 14px 0 10px;
    font-size: 1.15rem;
    color: var(--ink);
}
.step p {
    margin: 0;
    font-size: var(--text-size);
    color: var(--ink-soft);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
}

/* -------- 11. BOOKLET EXAMPLE ---------------------------------- */
.booklet-example {
    max-width: 360px;
    margin: 0 auto 72px;
    text-align: center;
}
.booklet-example img {
    border-radius: var(--radius-md);
    transform: rotate(-1deg);
    transition: transform 0.3s var(--ease);
}
.booklet-example img:hover { transform: rotate(0); }
.booklet-example figcaption {
    margin-top: 14px;
    font-family: var(--font-hand);
    font-size: 1.35rem;
    color: var(--blue);
}

/* -------- 12. AUTHOR CARD -------------------------------------- */
.author-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--content-pad-y) var(--content-pad-x);
    background: var(--cream-soft);
    border-radius: var(--radius-lg);
}
.author-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}
.author-text h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin: 10px 0 14px;
    color: var(--ink);
}
.author-text p { margin: 0 0 14px; }
.author-text p:last-child { margin-bottom: 0; }
.author-quote {
    padding: var(--content-pad-y) var(--content-pad-x);
    background: var(--white);
    border-radius: var(--radius-sm);
    font-style: italic;
    color: var(--ink-soft);
}

/* -------- 13. PRIJAVE ------------------------------------------ */
.prijave-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    margin-bottom: 48px;
}
.prijave-info,
.prijave-cta {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--content-pad-y) var(--content-pad-x);
}
.prijave-info h3,
.prijave-cta h3 {
    font-size: 1.4rem;
    color: var(--red);
    margin: 0 0 14px;
}
.prijave-info p { margin: 0 0 14px; }
.small-note {
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-style: italic;
    margin-top: 12px !important;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 16px;
}
.pill-list li {
    padding: 6px 14px;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
}
.pill-list li:nth-child(3n+1) { background: var(--pink); }
.pill-list li:nth-child(3n+2) { background: var(--yellow); }
.pill-list li:nth-child(3n)   { background: var(--cream); }

.location-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.location-list li {
    position: relative;
    padding: 14px 18px 14px 46px;
    background: var(--cream);
    border-radius: var(--radius-md);
    font-weight: 600;
    line-height: 1.4;
}
.location-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--red);
    border: 2px solid var(--ink);
    border-radius: 50% 50% 50% 0;
    rotate: -45deg;
}
.location-list li:nth-child(2)::before { background: var(--blue); }

.prijave-cta {
    background: var(--green);
    color: var(--cream);
    position: relative;
}
.prijave-cta h3 { color: var(--yellow); }
.prijave-cta p  { color: var(--cream); }
.cta-note {
    margin-top: 14px !important;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.92;
}
.cta-star {
    position: absolute;
    top: -22px;
    right: -18px;
    width: 78px;
    transform: rotate(10deg);
}

/* -------- 14. TIMELINE ----------------------------------------- */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 57px;
    height: 4px;
    background: repeating-linear-gradient(90deg,
        var(--ink) 0 8px,
        transparent 8px 16px);
    opacity: 0.7;
    z-index: 0;
}
.tl-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.tl-dot {
    width: 34px;
    height: 34px;
    margin: 0 auto 18px;
    background: url("../images/zvjezdica.png") center / contain no-repeat;
}
.tl-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--content-pad-y) var(--content-pad-x);
    height: 100%;
}
.tl-date {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: 4px;
    line-height: 1;
}
.tl-content h4 {
    font-size: 1.05rem;
    margin: 4px 0 8px;
    color: var(--ink);
}
.tl-content p {
    font-size: var(--text-size);
    color: var(--ink-soft);
    margin: 0;
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
}

.timeline-signup {
    display: flex;
    justify-content: center;
    margin: 54px 0 -28px;
}
.timeline-signup .btn {
    min-width: 170px;
    justify-content: center;
}

/* -------- 15. KONTAKT ------------------------------------------ */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 32px;
    align-items: start;
}
.kontakt-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    background: var(--cream-soft);
    border-radius: var(--radius-lg);
    padding: var(--content-pad-y) var(--content-pad-x);
}
.kontakt-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.kontakt-item:hover,
.kontakt-item:focus {
    background: var(--yellow);
    transform: translate(-2px, -2px);
}
.kontakt-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: var(--cream);
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
}
.kontakt-icon svg { width: 20px; height: 20px; }
.kontakt-item:nth-child(2) .kontakt-icon { background: var(--blue); }
.kontakt-item:nth-child(3) .kontakt-icon { background: var(--green); }
.kontakt-item:nth-child(4) .kontakt-icon { background: var(--yellow); color: var(--ink); }
.kontakt-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
}
.kontakt-value {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
    word-break: break-word;
}

.sponsor-card {
    position: relative;
    background: var(--pink);
    border-radius: var(--radius-lg);
    padding: var(--content-pad-y) var(--content-pad-x);
    text-align: center;
}
.sponsor-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.sponsor-grb {
    width: 56px;
    height: auto;
    flex: 0 0 auto;
}
.sponsor-label {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
}
.sponsor-name {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
}
.sponsor-note {
    font-size: 0.9rem;
    color: var(--ink);
    opacity: 0.85;
    margin: 0;
}
.sponsor-star {
    position: absolute;
    top: -24px;
    right: -16px;
    width: 72px;
    transform: rotate(-14deg);
}

/* -------- 15b. INSTAGRAM ----------------------------------------- */
.instagram-section {
    padding-bottom: 48px;
}

.instagram-section .section-lead a {
    color: var(--accent-pink);
    font-weight: 700;
    text-decoration: none;
}

.instagram-section .section-lead a:hover {
    text-decoration: underline;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    justify-items: center;
}

.instagram-feed .instagram-media,
.instagram-feed iframe {
    margin: 0 auto !important;
    width: 100% !important;
    min-width: 280px !important;
    max-width: 100% !important;
}

/* -------- 16. FOOTER ------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 48px 0 32px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    width: 160px;
    height: auto;
}
.footer-slogan {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    color: #e9e3cf;
    margin: 0;
    line-height: 1;
}
.footer-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.footer-eye {
    width: 80px;
    height: auto;
    border-radius: 4px;
}
.footer-meta p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}
.footer-meta nav {
    display: flex;
    gap: 18px;
}
.footer-meta nav a {
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s var(--ease);
}
.footer-meta nav a:hover,
.footer-meta nav a:focus {
    color: var(--yellow);
}

/* -------- 17. RESPONSIVE --------------------------------------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 24px 24px 60px;
    }
    .hero-animation { width: min(100%, 420px); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .timeline::before { display: none; }
    .prijave-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {

    .hero { padding-top: 24px; }
    .hero-inner { padding: 24px 16px 48px; gap: 28px; }
    .hero-title { font-size: var(--title-size); }
    .hero-eyebrow { font-size: 0.82rem; padding: 5px 12px; }
    .hero-bubbles { gap: 10px; flex-wrap: wrap; }
    .bubble {
        width: 220px;
        height: 136px;
        padding: 0;
        font-size: 1.05rem;
    }
    .bubble-b {
        width: 200px;
        height: 124px;
        padding: 0;
    }
    .hero-animation { width: min(100%, 340px); }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }

    .section { padding: 60px 0 40px; }
    .section-head { margin-bottom: 36px; }
    .circles-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .circle { width: 200px; }
    .steps { grid-template-columns: 1fr; }
    .timeline {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 20px;
        align-items: start;
    }
    .tl-step { padding-top: 0; }
    .tl-content { height: auto; }
    .tl-dot { margin: 0 auto 14px; }
    .timeline-signup { margin: 42px 0 -18px; }
    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .author-photo { max-width: 180px; margin: 0 auto; }
    .kontakt-card { grid-template-columns: 1fr; }

    .instagram-feed {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .instagram-feed .instagram-media,
    .instagram-feed iframe {
        min-width: 0 !important;
        max-width: min(100%, 540px) !important;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand { justify-content: center; }
    .footer-meta { text-align: center; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
