/* =========================================================
   OTROCI HUB – NAV
========================================================= */

.otroci-nav {
    width: min(1200px, calc(100% - 40px));
    margin: 20px auto 26px;
    min-height: 82px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    gap: 55px;

    background: linear-gradient(
        180deg,
        #101b27 0%,
        #08111b 100%
    );

    border-radius: 18px 18px 0 0;
    border-bottom: 3px solid #c9151e;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}


/* LOGO */
.otroci-nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.otroci-nav-brand img {
    display: block;
    width: 190px;
    height: auto;
}


/* POVEZAVE */
.otroci-nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.otroci-nav-links a {
    min-height: 50px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;
    font-weight: 800;

    border-radius: 14px;

    transition:
        background .2s ease,
        transform .2s ease;
}

.otroci-nav-links a:hover {
    background: rgba(255, 255, 255, .18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .22),
        0 4px 12px rgba(0, 0, 0, .25);
    transform: translateY(-1px);
}

.otroci-nav-links a.active {
    background: linear-gradient(
        180deg,
        #dc2028 0%,
        #b80e15 100%
    );

    box-shadow: 0 5px 14px rgba(0, 0, 0, .25);
}


/* MOBILNO */
@media (max-width: 700px) {

    .otroci-nav {
        width: calc(100% - 20px);
        margin: 10px auto 18px;
        padding: 12px 15px;
        gap: 18px;
    }

    .otroci-nav-brand img {
        width: 130px;
    }

    .otroci-nav-links {
        margin-left: auto;
        gap: 5px;
    }

    .otroci-nav-links a {
        min-height: 42px;
        padding: 0 12px;
        font-size: 14px;
    }
}

/* =========================================================
   OTROCI NA KEGLJIŠČU — INTRO
========================================================= */

.otroci-intro {
    width: 100%;
    margin: 0 0 28px;
    padding: 28px 34px;

    display: block;

    background: linear-gradient(
        135deg,
        #eef4f9 0%,
        #dfe9f2 55%,
        #cbd8e3 100%
    );

    border: 1px solid rgba(40, 65, 85, 0.14);
    border-radius: 20px;

    box-shadow:
        0 10px 24px rgba(25, 40, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.otroci-intro::after {
    content: "";
    display: block;
    clear: both;
}

.otroci-intro-icon {
    width: 170px;
    height: 170px;

    float: left;
    margin: 0 30px 18px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #123c5c 0%,
        #071a32 100%
    );

    font-size: 78px;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}


/* IKONA */

.otroci-intro-icon {
    width: 170px;
    height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #123c5c 0%,
        #071a32 100%
    );

    font-size: 78px;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.otroci-intro-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* VSEBINA */

.otroci-intro-content {
    min-width: 0;
}

.otroci-intro-content h1 {
    margin: 0 0 14px;

    color: #0b213d;

    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
}

.otroci-intro-content > p {
    margin: 0 0 8px;

    color: #202830;

    font-size: 16px;
    line-height: 1.45;
}


/* LOČILNA ČRTA */

.otroci-intro-line {
    width: 100%;
    height: 1px;
    margin: 20px 0 16px;

    background: rgba(30, 55, 75, 0.22);
}


/* ZAKAJ KEGLJATI */

.otroci-intro-content h2 {
    margin: 0 0 18px;

    color: #0b213d;

    font-size: 24px;
    font-weight: 900;
}


/* 5 RAZLOGOV */

.otroci-why {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.otroci-why-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.otroci-why-item span {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1.2;
}

.otroci-why-item p {
    margin: 0;

    color: #17212b;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   OTROCI HUB – KARTICE 2 × 2
========================================================= */

.cards.cards-main.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* =========================================================
   OTROCI HUB – CELOTNE SLIKE
========================================================= */

.cards-main .card-img img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
}

/* mobilni prikaz */
@media (max-width: 700px) {
    .cards.cards-main.cards-2 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   OTROCI HUB – BARVE KARTIC
========================================================= */

/* ŠOLE + ZABAVE */
.cards-main .card:nth-child(1) .card-body,
.cards-main .card:nth-child(3) .card-body {
    background: linear-gradient(
        180deg,
        #1763a5 0%,
        #0d4f8d 55%,
        #073968 100%
    );
}

/* DEČKI & DEKLICE + NOVIČKE */
.cards-main .card:nth-child(2) .card-body,
.cards-main .card:nth-child(4) .card-body {
    background: linear-gradient(
        180deg,
        #d71920 0%,
        #b90f15 55%,
        #85080d 100%
    );
}

/* =========================================================
   OTROCI INTRO – TELEFON POKONCI
========================================================= */

@media (max-width: 480px) {

    .otroci-intro {
        padding: 20px 18px;
        margin-bottom: 20px;
    }

    .otroci-intro-icon {
        width: 105px;
        height: 105px;

        float: none;
        margin: 0 auto 16px;
    }

    .otroci-intro-content h1 {
        font-size: 27px;
        line-height: 1.1;
        margin-bottom: 10px;
        text-align: center;
    }

    .otroci-intro-content > p {
        font-size: 15px;
        line-height: 1.4;
    }

    .otroci-intro-line {
        margin: 18px 0 14px;
    }

    .otroci-intro-content h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .otroci-why {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .otroci-why-item p {
        font-size: 14px;
    }
}

/* =========================================================
   OTROCI NAV – TELEFON POKONCI
========================================================= */

@media (max-width: 480px) {

    .otroci-nav {
        flex-direction: column;
        justify-content: center;
        gap: 10px;

        padding: 12px 14px 14px;
    }

    .otroci-nav-brand {
        justify-content: center;
    }

    .otroci-nav-brand img {
        width: 145px;
    }

    .otroci-nav-links {
        width: 100%;
        margin-left: 0;

        justify-content: center;
        gap: 8px;
    }

    .otroci-nav-links a {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }
}

/* =========================================================
   ŠOLE NA KEGLJIŠČU
========================================================= */

.sole-page {
    padding-bottom: 36px;
}


/* =========================================================
   UVOD
========================================================= */

.sole-intro {
    margin: 0 0 28px;
    padding: 34px 38px;

    background: linear-gradient(
        135deg,
        #eef4f9 0%,
        #dfe9f2 55%,
        #cbd8e3 100%
    );

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 20px;

    box-shadow:
        0 10px 24px rgba(25, 40, 55, .18),
        inset 0 1px 0 rgba(255, 255, 255, .8);
}

.sole-intro-content {
    max-width: 900px;
}

.sole-kicker {
    margin: 0 0 8px;

    color: #b50e15;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.sole-intro h1 {
    margin: 0 0 16px;

    color: #0b213d;

    font-size: 40px;
    font-weight: 900;
    line-height: 1.05;
}

.sole-intro p {
    margin: 0 0 10px;

    color: #202830;

    font-size: 16px;
    line-height: 1.55;
}

.sole-intro .sole-lead {
    max-width: 800px;

    color: #14283c;

    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
}

/* =========================================================
   SLIKE PROSTOROV
========================================================= */

.sole-space-image{
    margin: 14px 0 10px;
}

.sole-space-image img{
    display: block;
    width: 100%;
    height: auto;

    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);

    box-shadow:
        0 6px 8px rgba(0, 0, 0, .18),
        0 18px 35px rgba(0, 0, 0, .32);
}

.sole-image-note{
    margin-top: 10px;
    padding: 12px 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(
        180deg,
        #343a40 0%,
        #292e33 100%
    );

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;

    box-shadow:
        0 3px 6px rgba(0,0,0,.14),
        0 8px 18px rgba(0,0,0,.18);

    color: #f1f3f5;
    font-size: 14px;
    line-height: 1.4;
}

.sole-image-note-icon{
    flex: 0 0 auto;
    font-size: 17px;
}

/* =========================================================
   ŠOLE – FOTO GALERIJA
========================================================= */

.sole-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    margin: 22px 0 28px;
}

.sole-gallery-main {
    min-width: 0;
}

.sole-gallery-side {
    min-width: 0;

    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 14px;
}

.sole-gallery-main img,
.sole-gallery-small img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 14px;

    box-shadow:
        0 6px 8px rgba(0, 0, 0, .16),
        0 16px 30px rgba(0, 0, 0, .24);
}

/* glavna slika */
.sole-gallery-main img {
    aspect-ratio: 4 / 3;
}

/* tri manjše */
.sole-gallery-small {
    min-height: 0;
    overflow: hidden;
}

.sole-gallery-small img {
    aspect-ratio: 16 / 9;
}

/* =========================================================
   ŠOLE – GALERIJA DARK LOOK
========================================================= */

.sole-gallery-grid{
    padding: 18px;

    background: linear-gradient(
        180deg,
        #18232d 0%,
        #101820 100%
    );

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.06);
}


/* GLAVNA + MALE SLIKE */

.sole-gallery-main,
.sole-gallery-small{
    background: #202d38;
    padding: 7px;

    border-radius: 16px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.38);
}


/* SLIKE */

.sole-gallery-main img,
.sole-gallery-small img{
    border-radius: 11px;
}


/* MALE SLIKE – priprava za klik */

.sole-gallery-small{
    cursor: pointer;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.sole-gallery-small:hover{
    transform: translateY(-3px);

    background: #2b3a47;

    box-shadow:
        0 12px 26px rgba(0,0,0,.48);
}

@media (max-width: 900px) {

    .sole-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sole-gallery-side {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
    }
}

@media (max-width: 600px) {

    .sole-gallery-side {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SPLOŠNI BLOKI
========================================================= */

.sole-section {
    margin: 0 0 28px;
    padding: 30px 34px;

    background: #f4f8fb;

    border: 1px solid rgba(40, 65, 85, .13);
    border-radius: 18px;

    box-shadow:
        0 8px 20px rgba(25, 40, 55, .13),
        inset 0 1px 0 rgba(255, 255, 255, .85);
}

.sole-section-light {
    background: linear-gradient(
        135deg,
        #eef4f9 0%,
        #dfe9f2 100%
    );
}

.sole-section h2 {
    margin: 0 0 20px;

    color: #0b213d;

    font-size: 27px;
    font-weight: 900;
}

.sole-section > p {
    max-width: 980px;
    margin: 0 0 12px;

    color: #202830;

    font-size: 16px;
    line-height: 1.55;
}

.sole-section > p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   KAJ PONUJAMO – 3 KARTICE
========================================================= */

.sole-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sole-option {
    padding: 24px;

    background: #fff;

    border: 1px solid rgba(30, 55, 75, .12);
    border-radius: 16px;

    box-shadow: 0 6px 16px rgba(25, 40, 55, .10);
}

.sole-option-icon {
    margin-bottom: 12px;

    font-size: 32px;
    line-height: 1;
}

.sole-option h3 {
    margin: 0 0 9px;

    color: #0b213d;

    font-size: 19px;
    font-weight: 900;
}

.sole-option p {
    margin: 0;

    color: #29343e;

    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   KAKO POTEKA – 3 KORAKI
========================================================= */

.sole-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sole-step > span {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: linear-gradient(
        180deg,
        #d71920 0%,
        #990b10 100%
    );

    border-radius: 50%;

    font-size: 18px;
    font-weight: 900;

    box-shadow: 0 5px 12px rgba(0, 0, 0, .18);
}

.sole-step h3 {
    margin: 1px 0 7px;

    color: #0b213d;

    font-size: 17px;
    font-weight: 900;
}

.sole-step p {
    margin: 0;

    color: #29343e;

    font-size: 14px;
    line-height: 1.45;
}

.sole-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 20px;

    background: rgba(255, 255, 255, .78);

    border: 1px solid rgba(20, 45, 65, .08);
    border-radius: 15px;

    box-shadow:
        0 5px 14px rgba(20, 35, 50, .08),
        inset 0 1px 0 rgba(255, 255, 255, .8);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.sole-step:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(20, 35, 50, .13);
}

/* =========================================================
   OPREMA IN OBUTEV
========================================================= */

.sole-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sole-equipment-item {
    padding: 24px;

    background: #fff;

    border-radius: 16px;
    border: 1px solid rgba(30, 55, 75, .12);
}

.sole-equipment-icon {
    margin-bottom: 10px;

    font-size: 32px;
}

.sole-equipment-item h3 {
    margin: 0 0 10px;

    color: #0b213d;

    font-size: 20px;
    font-weight: 900;
}

.sole-equipment-item p {
    margin: 0 0 10px;

    color: #29343e;

    font-size: 15px;
    line-height: 1.5;
}

.sole-equipment-item p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VARNOST
========================================================= */

.sole-notice {
    margin: 0 0 28px;
    padding: 24px 28px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    background: linear-gradient(
        135deg,
        #fff6dc 0%,
        #f5e8bc 100%
    );

    border: 1px solid rgba(150, 105, 15, .25);
    border-radius: 17px;

    box-shadow: 0 7px 18px rgba(25, 40, 55, .12);
}

.sole-notice-icon {
    flex: 0 0 auto;

    font-size: 30px;
}

.sole-notice h2 {
    margin: 0 0 7px;

    color: #4b3500;

    font-size: 21px;
    font-weight: 900;
}

.sole-notice p {
    margin: 0;

    color: #463c25;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   CENIK + DOGOVOR ZA TERMIN
========================================================= */

.sole-contact {
    margin: 0 0 28px;
    padding: 28px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: linear-gradient(
        180deg,
        #16222d 0%,
        #09121b 100%
    );

    border-radius: 18px;
    border-bottom: 3px solid #c9151e;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.sole-contact .sole-kicker {
    color: #ffcb42;
}

.sole-contact h2 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 26px;
    font-weight: 900;
}

.sole-contact p:not(.sole-kicker) {
    max-width: 650px;
    margin: 0;

    color: #d7e0e8;

    font-size: 15px;
    line-height: 1.5;
}

.sole-contact-actions {
    flex: 0 0 auto;

    display: flex;
    gap: 12px;
}

.sole-contact-actions .btn {
    min-height: 48px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-weight: 900;

    border-radius: 12px;
}

.sole-contact .sole-contact-note {
    margin-top: 14px;
    padding-top: 12px;

    border-top: 1px solid rgba(255, 255, 255, .16);

    color: #d7e0e8;
}

.sole-contact .sole-contact-note strong {
    color: #ffcb42;
}

/* =========================================================
   NADALJEVANJE – DP / ZABAVE
========================================================= */

.sole-more {
    padding: 30px 34px;

    background: linear-gradient(
        135deg,
        #eef4f9 0%,
        #d7e3ed 100%
    );

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(25, 40, 55, .13);
}

.sole-more > h2 {
    margin: 0 0 7px;

    color: #0b213d;

    font-size: 26px;
    font-weight: 900;
}

.sole-more > p {
    margin: 0 0 20px;

    color: #29343e;
}

.sole-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.sole-more-card {
    padding: 20px 22px;

    display: flex;
    align-items: center;
    gap: 16px;

    color: inherit;
    text-decoration: none;

    background: #fff;

    border: 1px solid rgba(30, 55, 75, .12);
    border-radius: 15px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.sole-more-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(25, 40, 55, .16);
}

.sole-more-card > span {
    flex: 0 0 auto;

    font-size: 34px;
}

.sole-more-card h3 {
    margin: 0 0 5px;

    color: #0b213d;

    font-size: 18px;
    font-weight: 900;
}

.sole-more-card p {
    margin: 0;

    color: #34414c;

    font-size: 14px;
}


/* =========================================================
   ŠOLE – TABLET
========================================================= */

@media (max-width: 900px) {

    .sole-options,
    .sole-steps {
        grid-template-columns: 1fr;
    }

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


/* =========================================================
   ŠOLE – TELEFON
========================================================= */

@media (max-width: 600px) {

    .sole-page {
        padding-bottom: 24px;
    }

    .sole-intro {
        margin-bottom: 18px;
        padding: 24px 20px;
    }

    .sole-intro h1 {
        font-size: 30px;
    }

    .sole-intro .sole-lead {
        font-size: 17px;
    }

    .sole-intro p {
        font-size: 15px;
    }


    .sole-section {
        margin-bottom: 18px;
        padding: 22px 18px;
    }

    .sole-section h2 {
        font-size: 23px;
    }

    .sole-section > p {
        font-size: 15px;
    }


    .sole-option,
    .sole-step,
    .sole-equipment-item {
        padding: 18px;
    }


    .sole-equipment-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .sole-notice {
        margin-bottom: 18px;
        padding: 20px 18px;
        gap: 12px;
    }


    .sole-contact {
        margin-bottom: 18px;
        padding: 24px 20px;
    }

    .sole-contact h2 {
        font-size: 23px;
    }

    .sole-contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .sole-contact-actions .btn {
        width: 100%;
    }


    .sole-more {
        padding: 22px 18px;
    }

    .sole-more > h2 {
        font-size: 23px;
    }

    .sole-more-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* =========================================================
   ZABAVE ZA OTROKE
========================================================= */

.zabave-page {
    padding-bottom: 30px;
}


/* =========================================================
   ZABAVE – UVOD
========================================================= */

.zabave-intro {
    margin: 0 0 28px;
    padding: 38px 42px;

    background:
        linear-gradient(
            135deg,
            #eef4f9 0%,
            #dfe9f2 55%,
            #cbd8e3 100%
        );

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 20px;

    box-shadow:
        0 10px 24px rgba(25, 40, 55, .18),
        inset 0 1px 0 rgba(255, 255, 255, .8);
}

.zabave-intro-content {
    max-width: 820px;
}

.zabave-intro h1 {
    margin: 4px 0 14px;

    color: #0b213d;

    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
}

.zabave-lead {
    margin: 0 0 12px;

    color: #17212b;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.zabave-intro-content > p:last-child {
    margin-bottom: 0;

    color: #27333d;

    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   GLAVNI POUDARKI – 4 STEZE / 2 URI / STAROST
========================================================= */

.zabave-highlights {
    margin-bottom: 28px;

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

.zabave-highlight {
    min-width: 0;
    padding: 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    background:
        linear-gradient(
            145deg,
            #101b27 0%,
            #07111c 100%
        );

    border-radius: 18px;

    box-shadow:
        0 9px 20px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.zabave-highlight > strong {
    min-width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #fff;

    background:
        linear-gradient(
            180deg,
            #df1e27 0%,
            #a80b11 100%
        );

    border-radius: 50%;

    font-size: 25px;
    font-weight: 900;

    box-shadow: 0 5px 14px rgba(0, 0, 0, .35);
}

.zabave-highlight h3 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

.zabave-highlight p {
    margin: 0;

    color: #d5dee6;

    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   ZABAVE – FOTO GALERIJA
========================================================= */

.zabave-gallery {
    margin: 28px 0;
    padding: 30px;

    background:
        linear-gradient(
            135deg,
            #101b27 0%,
            #07111c 100%
        );

    border-radius: 20px;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.zabave-gallery-head {
    margin-bottom: 22px;
}

.zabave-gallery-head h2 {
    margin: 4px 0 8px;

    color: #fff;

    font-size: 28px;
    font-weight: 900;
}

.zabave-gallery-head > p:last-child {
    margin: 0;
    color: #d2dce5;
}

.zabave-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.zabave-gallery-main {
    min-height: 510px;
}

.zabave-gallery-side {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 14px;
}

.zabave-gallery-small {
    min-height: 160px;
}


/* =========================================================
   PLACEHOLDER ZA SLIKE
========================================================= */

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    overflow: hidden;

    color: #6b7883;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            #e7edf2 0%,
            #cbd6df 100%
        );

    border: 2px dashed rgba(45, 70, 90, .25);
    border-radius: 14px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
}

.zabave-gallery img,
.zabave-space-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   PROSTORI ZA DRUŽENJE
========================================================= */

.zabave-spaces {
    margin: 28px 0;
    padding: 30px;

    background:
        linear-gradient(
            135deg,
            #eef4f9 0%,
            #dce7f0 100%
        );

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 20px;

    box-shadow: 0 9px 22px rgba(25, 40, 55, .16);
}

.zabave-spaces-head {
    margin-bottom: 22px;
}

.zabave-spaces-head h2 {
    margin: 0 0 8px;

    color: #0b213d;

    font-size: 28px;
    font-weight: 900;
}

.zabave-spaces-head p {
    margin: 0;
    color: #27333d;
}

.zabave-spaces-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.zabave-space-card {
    overflow: hidden;

    background: #fff;

    border-radius: 16px;

    box-shadow: 0 7px 18px rgba(20, 35, 50, .16);
}

.zabave-space-image {
    min-height: 260px;
    border-radius: 0;
}

.zabave-space-content {
    padding: 20px 22px;
}

.zabave-space-content h3 {
    margin: 0 0 8px;

    color: #0b213d;

    font-size: 20px;
    font-weight: 900;
}

.zabave-space-content p {
    margin: 0;

    color: #27333d;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   NADGRADNJA ZABAVE
========================================================= */

.zabave-upgrade {
    margin: 28px 0;
    padding: 32px;

    background:
        linear-gradient(
            135deg,
            #102b4a 0%,
            #071a32 100%
        );

    border-radius: 20px;

    box-shadow:
        0 10px 26px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.zabave-upgrade-head {
    margin-bottom: 22px;
}

.zabave-upgrade-head h2 {
    margin: 4px 0 8px;

    color: #fff;

    font-size: 29px;
    font-weight: 900;
}

.zabave-upgrade-head > p:last-child {
    margin: 0;
    color: #d2dce5;
}

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

.zabave-upgrade-card {
    padding: 24px 20px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
}

.zabave-upgrade-icon {
    margin-bottom: 12px;
    font-size: 32px;
}

.zabave-upgrade-card h3 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

.zabave-upgrade-card p {
    margin: 0;

    color: #d7e0e8;

    font-size: 14px;
    line-height: 1.5;
}

.zabave-upgrade-final {
    margin: 22px 0 0;
    padding: 18px 20px;

    color: #fff;

    background:
        linear-gradient(
            180deg,
            #d71920 0%,
            #a80b11 100%
        );

    border-radius: 14px;

    text-align: center;
    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .zabave-highlights {
        grid-template-columns: 1fr;
    }

    .zabave-highlight {
        padding: 20px;
    }

    .zabave-gallery-grid {
        grid-template-columns: 1fr;
    }

    .zabave-gallery-main {
        min-height: 400px;
    }

    .zabave-gallery-side {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
    }

    .zabave-gallery-small {
        min-height: 150px;
    }
}


/* =========================================================
   TELEFON
========================================================= */

@media (max-width: 700px) {

    .zabave-intro {
        margin-bottom: 20px;
        padding: 25px 20px;
    }

    .zabave-intro h1 {
        font-size: 31px;
    }

    .zabave-lead {
        font-size: 17px;
    }

    .zabave-highlight {
        align-items: flex-start;
        gap: 14px;
    }

    .zabave-highlight > strong {
        min-width: 58px;
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .zabave-gallery {
        padding: 20px;
    }

    .zabave-gallery-head h2 {
        font-size: 24px;
    }

    .zabave-gallery-main {
        min-height: 280px;
    }

    .zabave-gallery-side {
        grid-template-columns: 1fr;
    }

    .zabave-gallery-small {
        min-height: 210px;
    }

    .zabave-spaces {
        padding: 20px;
    }

    .zabave-spaces-grid {
        grid-template-columns: 1fr;
    }

    .zabave-space-image {
        min-height: 220px;
    }

    .zabave-upgrade {
        padding: 22px 20px;
    }

    .zabave-upgrade-grid {
        grid-template-columns: 1fr;
    }

    .zabave-upgrade-head h2 {
        font-size: 24px;
    }
}

/* =========================================================
   DEČKI & DEKLICE – DP
========================================================= */


/* =========================================================
   HERO
========================================================= */

.dd-hero {
    margin: 0 0 28px;
    padding: 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;

    background: linear-gradient(
        135deg,
        #eef4f9 0%,
        #dfe9f2 55%,
        #cbd8e3 100%
    );

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 20px;

    box-shadow:
        0 10px 24px rgba(25, 40, 55, .18),
        inset 0 1px 0 rgba(255, 255, 255, .8);
}

.dd-hero-content {
    min-width: 0;
}

.dd-kicker {
    margin: 0 0 8px;

    color: #b80e15;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.dd-hero h1 {
    margin: 0 0 10px;

    color: #0b213d;

    font-size: 44px;
    font-weight: 900;
    line-height: 1.05;
}

.dd-lead {
    margin: 0 0 18px;

    color: #123c5c;

    font-size: 22px;
    font-weight: 800;
}

.dd-hero-content p:not(.dd-kicker):not(.dd-lead) {
    color: #202830;
    font-size: 16px;
    line-height: 1.55;
}


/* HERO SLIKA */

.dd-hero-image {
    min-width: 0;
}


/* =========================================================
   PLACEHOLDERJI ZA SLIKE
========================================================= */

.dd-image-placeholder {
    width: 100%;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    color: rgba(255, 255, 255, .75);
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;

    background: linear-gradient(
        145deg,
        #123c5c 0%,
        #071a32 100%
    );

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .1);
}

/* =========================================================
   GLAVNA FOTOGRAFIJA
========================================================= */

.dd-hero-image {
    overflow: hidden;

    border-radius: 18px;
    border: 1px solid rgba(20, 55, 85, .07);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .16),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

.dd-hero-image img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 18px;
}

.dd-gallery-video {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dd-gallery-video a {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    color: #fff;
    text-decoration: none;
}

.dd-gallery-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.dd-gallery-video img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.dd-gallery-video a:hover img {
    transform: scale(1.03);
    filter: brightness(.78);
}

.dd-video-play {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: rgba(200, 15, 22, .92);

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.dd-video-label {
    position: absolute;
    left: 12px;
    bottom: 12px;

    padding: 6px 10px;

    background: rgba(8, 20, 32, .82);

    border-radius: 8px;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
}

/* =========================================================
   PRIDI IN POSKUSI
========================================================= */

.dd-try {
    margin: 0 0 28px;
    padding: 24px 28px;

    display: flex;
    align-items: center;
    gap: 24px;

    background: linear-gradient(
        180deg,
        #1763a5 0%,
        #0d4f8d 55%,
        #073968 100%
    );

    color: #fff;

    border-radius: 18px;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .15);
}

.dd-try-icon {
    flex: 0 0 82px;
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .22);

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;

    font-size: 38px;
}

.dd-try .dd-kicker {
    color: #dbeeff;
}

.dd-try h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.dd-try p {
    margin: 5px 0;
    line-height: 1.5;
}


/* =========================================================
   TRENING + OPREMA
========================================================= */

.dd-two-col {
    margin: 0 0 28px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.dd-panel {
    padding: 26px 28px;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #edf3f8 100%
    );

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(25, 40, 55, .15);
}

.dd-panel h2 {
    margin: 0 0 18px;

    color: #0b213d;
    font-size: 25px;
}

.dd-panel p {
    color: #26323c;
    line-height: 1.5;
}

.dd-list,
.dd-equipment {
    margin: 0 0 18px;
    padding-left: 22px;

    color: #17212b;
}

.dd-list li,
.dd-equipment li {
    margin: 8px 0;
    line-height: 1.4;
}

.dd-equipment {
    list-style: none;
    padding-left: 0;
}

.dd-note {
    margin-top: 18px;
    padding: 12px 15px;

    background: rgba(215, 25, 32, .08);
    border-left: 4px solid #c9151e;

    border-radius: 0 10px 10px 0;

    font-weight: 700;
}


/* =========================================================
   TEKMOVANJA
========================================================= */

.dd-competition {
    margin: 0 0 28px;
    padding: 30px;

    background: linear-gradient(
        135deg,
        #eef4f9 0%,
        #dce7f0 100%
    );

    border-radius: 20px;
    border: 1px solid rgba(40, 65, 85, .14);

    box-shadow: 0 8px 22px rgba(25, 40, 55, .16);
}

.dd-competition > h2 {
    margin: 0 0 8px;

    color: #0b213d;
    font-size: 30px;
}

.dd-section-intro {
    max-width: 850px;
    margin: 0 0 24px;

    color: #34424e;
    line-height: 1.5;
}

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

.dd-competition-card {
    padding: 22px;

    background: #fff;

    border-radius: 16px;
    border: 1px solid rgba(40, 65, 85, .12);

    box-shadow: 0 6px 16px rgba(25, 40, 55, .12);
}

.dd-card-icon {
    margin-bottom: 10px;
    font-size: 32px;
}

.dd-competition-card h3 {
    margin: 0 0 10px;

    color: #0b213d;
    font-size: 19px;
}

.dd-competition-card p {
    margin: 0;

    color: #34424e;
    line-height: 1.45;
}


/* =========================================================
   KATEGORIJE
========================================================= */

.dd-categories {
    margin: 0 0 28px;
    padding: 30px;

    background: linear-gradient(
        180deg,
        #101b27 0%,
        #08111b 100%
    );

    color: #fff;

    border-radius: 20px;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.dd-categories .dd-kicker {
    color: #ff5960;
}

.dd-categories > h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.dd-categories > p {
    color: #d7e0e8;
}

.dd-category-year {
    margin: 22px 0;
    padding: 15px 18px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(215, 25, 32, .16);

    border: 1px solid rgba(255, 70, 75, .35);
    border-radius: 12px;
}

.dd-category-year strong {
    padding: 6px 10px;

    background: #c9151e;

    border-radius: 8px;
}

.dd-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.dd-category {
    padding: 20px 16px;

    text-align: center;

    background: rgba(255, 255, 255, .07);

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
}

.dd-category-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        180deg,
        #d71920 0%,
        #950a10 100%
    );

    border-radius: 50%;

    font-size: 20px;
    font-weight: 900;
}

.dd-category h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.dd-category p {
    margin: 0;

    color: #dbe4ec;
    font-size: 14px;
    line-height: 1.4;
}


/* POT DO U19 */

.dd-u19 {
    margin-top: 24px;
    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;

    background: rgba(255, 255, 255, .06);

    border-radius: 12px;

    font-weight: 800;
}

.dd-u19 b {
    color: #ff4b52;
}

.dd-u19 strong {
    padding: 7px 12px;

    background: #1763a5;
    border-radius: 8px;
}

.dd-u19-text {
    margin: 14px 0 0;
    text-align: center;
}


/* =========================================================
   DP – SKUPAJ + 7 TEKEM
========================================================= */

.dd-dp {
    margin: 0 0 28px;
    padding: 30px;

    background: #fff;

    border: 1px solid rgba(40, 65, 85, .14);
    border-radius: 20px;

    box-shadow: 0 8px 22px rgba(25, 40, 55, .16);
}


/* =========================================================
   GLAVA DP
========================================================= */

.dd-dp-head {
    margin-bottom: 8px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.dd-dp-head h2 {
    margin: 0;

    color: #0b213d;

    font-size: 30px;
    font-weight: 900;
}

.dd-season {
    padding: 9px 13px;

    color: #53616c;
    background: #edf3f8;

    border-radius: 10px;

    font-size: 11px;
    text-align: center;
}

.dd-season strong {
    display: block;

    color: #0b213d;

    font-size: 16px;
    line-height: 1.15;
}


/* =========================================================
   PORTAL KZS
========================================================= */

.dd-kzs-portal {
    margin: 0 0 12px;

    text-align: right;
}

.dd-kzs-portal a {
    color: #1763a5;

    font-size: 11px;
    font-weight: 900;

    text-decoration: none;
}

.dd-kzs-portal a:hover {
    text-decoration: underline;
}


/* =========================================================
   NAVIGACIJA – SKUPAJ + 1–7
========================================================= */

.dd-round-nav {
    margin-bottom: 20px;

    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 7px;
}

.dd-round-nav button {
    min-width: 0;
    min-height: 46px;
    padding: 8px 4px;

    border: 0;
    border-radius: 9px;

    background: #dce6ee;
    color: #173149;

    font: inherit;
    font-size: 11px;
    font-weight: 900;

    cursor: pointer;

    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.dd-round-nav button:hover {
    background: #c6d7e4;
}

.dd-round-nav button.active {
    color: #fff;

    background: linear-gradient(
        180deg,
        #d71920 0%,
        #a70c12 100%
    );
}


/* =========================================================
   POSAMEZNA TEKMA
========================================================= */

.dd-round {
    padding: 24px;

    background: linear-gradient(
        135deg,
        #edf4f9 0%,
        #dce7f0 100%
    );

    border-radius: 16px;
}


/* GLAVA TEKME */

.dd-round-info {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.dd-round-number {
    flex: 0 0 auto;

    padding: 9px 12px;

    background: #0d4f8d;
    color: #fff;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 900;
}

.dd-round-info h3 {
    margin: 0 0 2px;

    color: #0b213d;

    font-size: 25px;
    font-weight: 900;
}

.dd-round-info p {
    margin: 0;

    color: #52606b;

    font-size: 14px;
}


/* =========================================================
   KUGL + KZS – DVA STOLPCA
========================================================= */

.dd-round-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}


/* POSAMEZNA KARTICA */

.dd-round-box {
    min-width: 0;
    padding: 14px;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, .78);

    border: 1px solid rgba(40, 65, 85, .15);
    border-radius: 11px;

    box-shadow: 0 3px 9px rgba(25, 40, 55, .06);
}


/* GLAVA KARTICE */

.dd-round-box-head {
    margin-bottom: 10px;
    padding-bottom: 9px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-bottom: 1px solid rgba(40, 65, 85, .18);
}

.dd-round-box-icon {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid rgba(40, 65, 85, .16);
    border-radius: 7px;

    font-size: 21px;
}

.dd-round-box-head h4 {
    margin: 0 0 2px;

    color: #0b213d;

    font-size: 15px;
    font-weight: 900;
}

.dd-round-box-head p {
    margin: 0;

    color: #60717f;

    font-size: 11px;
}


/* KUGL NASLOV ZELEN */

.dd-round-kugl .dd-round-box-head h4 {
    color: #13864d;
}


/* KZS NASLOV MODER */

.dd-round-kzs .dd-round-box-head h4 {
    color: #0d5b9f;
}


/* =========================================================
   VRSTICE V KARTICAH
========================================================= */

.dd-round-links {
    display: grid;
    gap: 5px;
}

.dd-round-link {
    min-height: 34px;
    padding: 7px 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    color: #142536;
    background: rgba(255, 255, 255, .88);

    border: 1px solid rgba(40, 65, 85, .10);
    border-radius: 6px;

    font-size: 11px;

    text-decoration: none;
}

.dd-round-link:hover {
    background: #fff;
}

.dd-round-link strong {
    display: block;

    color: #10283e;

    font-size: 11px;
}

.dd-round-link small {
    display: block;
    margin-top: 1px;

    color: #687886;

    font-size: 9px;
}

.dd-round-link b {
    flex: 0 0 auto;

    color: #1763a5;

    font-size: 10px;
}


/* DISABLED */

.dd-round-link.disabled,
.dd-round-open.disabled,
.dd-round-stats-btn.disabled {
    cursor: default;
}


/* =========================================================
   SPODNJI GUMB KUGL / KZS
========================================================= */

.dd-round-box-footer {
    margin-top: auto;
    padding-top: 10px;
}

.dd-round-open {
    min-height: 31px;
    padding: 7px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0d4f8d;
    background: #e4eff9;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;
}


/* KUGL GUMB */

.dd-round-kugl .dd-round-open {
    color: #147743;
    background: #e3f3e9;
}


/* KZS GUMB */

.dd-round-kzs .dd-round-open {
    color: #0d4f8d;
    background: #deecf9;
}

.dd-round-open:hover {
    filter: brightness(.97);
}


/* =========================================================
   STATISTIKA
========================================================= */

.dd-round-stats {
    margin-top: 12px;
    padding: 13px 15px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;

    background: linear-gradient(
        180deg,
        #fffaf0 0%,
        #f5ead5 100%
    );

    border: 1px solid rgba(190, 135, 35, .18);
    border-radius: 10px;
}

.dd-round-stats-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dd-round-stats-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.dd-round-stats h4 {
    margin: 0 0 2px;

    color: #a86a00;

    font-size: 13px;
    font-weight: 900;
}

.dd-round-stats p {
    margin: 0;

    color: #59636c;

    font-size: 10px;
    line-height: 1.35;
}

.dd-round-stats-btn {
    min-width: 170px;
    padding: 8px 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #9b670d;
    background: #f0dfb8;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   TABLET – DP
========================================================= */

@media (max-width: 900px) {

    .dd-round-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .dd-round-columns {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   TELEFON – DP
========================================================= */

@media (max-width: 700px) {

    .dd-dp {
        padding: 22px 18px;
    }

    .dd-dp-head {
        margin-bottom: 8px;
    }

    .dd-dp-head h2 {
        font-size: 25px;
    }

    .dd-season {
        flex: 0 0 auto;
    }

    .dd-kzs-portal {
        margin-bottom: 12px;
        text-align: left;
    }

    .dd-round-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dd-round {
        padding: 16px;
    }

    .dd-round-info {
        gap: 12px;
    }

    .dd-round-info h3 {
        font-size: 21px;
    }

    .dd-round-columns {
        grid-template-columns: 1fr;
    }

    .dd-round-stats {
        grid-template-columns: 1fr;
    }

    .dd-round-stats-btn {
        width: 100%;
    }

}


/* =========================================================
   TELEFON – OZEK
========================================================= */

@media (max-width: 480px) {

    .dd-round-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   STARŠI
========================================================= */

.dd-parents {
    margin: 0 0 28px;
    padding: 26px 30px;

    background: linear-gradient(
        180deg,
        #1763a5 0%,
        #0d4f8d 55%,
        #073968 100%
    );

    color: #fff;

    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.dd-parents .dd-kicker {
    color: #dceeff;
}

.dd-parents h2 {
    margin: 0 0 10px;
    font-size: 27px;
}

.dd-parents p {
    max-width: 900px;
    line-height: 1.5;
}

/* =========================================================
   STARŠI – KONTAKTNE OSEBE
========================================================= */

.dd-parent-person {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 14px;
    padding: 12px 16px;

    background: rgba(0, 0, 0, .18);

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 4px 10px rgba(0, 0, 0, .12);
}

.dd-parent-person > span {
    font-size: 26px;
    line-height: 1;
}

.dd-parent-person > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dd-parent-person small {
    color: #bcd9f2;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
}

.dd-parent-person strong {
    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

/* =========================================================
   GALERIJA
========================================================= */

.dd-gallery {
    margin: 0 0 28px;
}

.dd-gallery-head {
    margin-bottom: 18px;
}

.dd-gallery-head h2 {
    margin: 0;
    color: #0b213d;
    font-size: 30px;
}

.dd-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.dd-gallery-main {
    grid-row: 1 / 3;
}

.dd-gallery-main .dd-image-placeholder {
    height: 100%;
    min-height: 430px;
}

.dd-gallery-small .dd-image-placeholder {
    height: 100%;
    min-height: 205px;
}

/* PRAVE SLIKE */

.dd-gallery-main img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.dd-gallery-small img {
    width: 100%;
    height: 100%;
    min-height: 205px;
    object-fit: cover;
    display: block;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .dd-hero {
        grid-template-columns: 1fr;
    }

    .dd-competition-grid {
        grid-template-columns: 1fr;
    }

    .dd-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dd-round-nav {
        grid-template-columns: repeat(4, 1fr);
    }

    .dd-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .dd-gallery-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .dd-gallery-main .dd-image-placeholder {
        min-height: 340px;
    }
}


/* =========================================================
   TELEFON
========================================================= */

@media (max-width: 700px) {

    .dd-hero,
    .dd-competition,
    .dd-categories,
    .dd-dp {
        padding: 22px 18px;
    }

    .dd-hero h1 {
        font-size: 32px;
    }

    .dd-lead {
        font-size: 19px;
    }

    .dd-try {
        padding: 20px 18px;
        align-items: flex-start;
    }

    .dd-try-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        font-size: 27px;
    }

    .dd-two-col {
        grid-template-columns: 1fr;
    }

    .dd-panel {
        padding: 22px 18px;
    }

    .dd-category-grid {
        grid-template-columns: 1fr;
    }

    .dd-category-year {
        align-items: flex-start;
        flex-direction: column;
    }

    .dd-dp-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .dd-round-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .dd-round {
        padding: 18px;
    }

    .dd-round-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .dd-round-actions {
        flex-direction: column;
    }

    .dd-round-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .dd-results-placeholder {
        align-items: flex-start;
    }

    .dd-parents {
        padding: 22px 18px;
    }

    .dd-gallery-grid {
        grid-template-columns: 1fr;
    }

    .dd-gallery-main {
        grid-column: auto;
    }

    .dd-gallery-main .dd-image-placeholder,
    .dd-gallery-small .dd-image-placeholder {
        min-height: 230px;
    }
}


/* =========================================================
   TELEFON – OZEK
========================================================= */

@media (max-width: 480px) {

    .dd-try {
        flex-direction: column;
    }

    .dd-try-icon {
        margin: 0 auto;
    }

    .dd-round-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .dd-u19 {
        gap: 8px;
        font-size: 13px;
    }
}

/* =========================================================
   DEČKI & DEKLICE – VIDEO MODAL
========================================================= */

.dd-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, .88);
}

.dd-video-modal.open {
    display: flex;
}

.dd-video-modal-inner {
    position: relative;

    width: min(1100px, 94vw);

    background: #000;
    border-radius: 16px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .65);
}

.dd-video-frame {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;
    border-radius: 16px;
}

.dd-video-frame iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.dd-video-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #fff;
    background: #c9151e;

    border: 2px solid #fff;
    border-radius: 50%;

    font-size: 30px;
    font-weight: 900;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 5px 16px rgba(0, 0, 0, .45);
}

.dd-video-close:hover {
    background: #e31b25;
}


/* TELEFON */

@media (max-width: 600px) {

    .dd-video-modal {
        padding: 12px;
    }

    .dd-video-modal-inner {
        width: 100%;
        border-radius: 10px;
    }

    .dd-video-frame {
        border-radius: 10px;
    }

    .dd-video-close {
        top: -14px;
        right: -4px;

        width: 40px;
        height: 40px;

        font-size: 26px;
    }
}

