* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111111;
}


/* NAVIGACIJA */

.navbar {
    width: 100%;
    padding: 20px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #111111;
    text-decoration: none;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-button {
    background: #00d26a;
    color: #111111;

    text-decoration: none;

    padding: 12px 18px;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition: transform 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
}


/* HERO */

.hero {
    min-height: calc(100vh - 70px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 60px 20px;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.hero-organizer {
    display: block;

    margin-bottom: 20px;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 1.5px;

    color: #111111;
}

.hero h1 {
    font-size: clamp(48px, 10vw, 110px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;

    max-width: 1000px;
}

.hero-slogan {
    margin-top: 18px;

    font-size: clamp(18px, 3vw, 26px);

    font-weight: 900;

    letter-spacing: 3px;

    color: #00a854;
}

.hero-info {
    margin-top: 28px;

    font-size: 22px;
    font-weight: 700;
}

.hero-sports {
    margin-top: 15px;

    font-size: 16px;

    color: #555555;
}


/* GLAVNI GUMB */

.main-button {
    margin-top: 35px;

    display: inline-block;

    background: #00d26a;
    color: #111111;

    text-decoration: none;

    padding: 17px 32px;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 800;

    transition: transform 0.2s ease;
}

.main-button:hover {
    transform: translateY(-2px);
}


/* BRZE INFORMACIJE */

.info-section {
    width: 90%;
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    padding: 40px 0 60px;
}

.info-card {
    background: #f3f3f3;

    padding: 25px 20px;

    border-radius: 10px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.info-card span {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #666666;
}

.info-card strong {
    font-size: 20px;

    font-weight: 800;
}


/* SEKCIJE */

.sports-section {
    width: 90%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 80px 0;
}

.section-heading {
    margin-bottom: 35px;
}

.section-label {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #666666;

    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(32px, 6vw, 60px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;
}


/* KARTICE SPORTOVA */

.sports-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    align-items: stretch;
}

.sport-card {
    background: #f3f3f3;

    border-radius: 12px;

    padding: 30px;

    min-height: 280px;

    display: flex;
    flex-direction: column;
}

.sport-number {
    font-size: 13px;

    font-weight: 800;

    color: #666666;

    letter-spacing: 1px;
}

.sport-card h3 {
    margin-top: 55px;

    font-size: 32px;

    font-weight: 900;

    letter-spacing: -1px;
}

.sport-card p {
    margin-top: 15px;

    font-size: 15px;

    line-height: 1.5;

    color: #555555;

    max-width: 300px;
}


/* VRIJEME POČETKA */

.start-time {
    margin-top: 16px;

    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 3px;
}

.start-time span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #666666;
}

.start-time strong {
    background: #00d26a;

    padding: 6px 10px;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 900;

    color: #111111;
}


/* BROJ IGRAČA */

.players {
    margin-top: auto;

    padding-top: 25px;

    font-size: 13px;

    letter-spacing: 1px;
}


/* KOTIZACIJA */

.entry-fee {
    margin-top: 16px;

    padding-top: 16px;

    border-top: 1px solid #d8d8d8;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.entry-fee span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #666666;
}

.entry-fee strong {
    font-size: 17px;

    font-weight: 900;

    color: #00a854;
}


/* UTRKA */

.race-card {
    min-height: 650px;
}

.race-details {
    margin-top: 24px;

    display: flex;
    flex-direction: column;

    gap: 0;
}

.race-category {
    padding: 13px 0;

    border-bottom: 1px solid #d8d8d8;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.race-category:first-child {
    padding-top: 0;
}

.race-category:last-child {
    border-bottom: none;
}

.race-category-title {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.race-category-title strong {
    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.8px;

    color: #111111;
}

.race-category-title small {
    font-size: 11px;

    line-height: 1.3;

    color: #777777;
}

.race-distance {
    font-size: 14px;

    line-height: 1.4;

    font-weight: 700;

    color: #333333;
}


/* VIŠE OD SPORTA */

.extras-section {
    padding-top: 50px;
    padding-bottom: 100px;
}

.extras-grid {
    grid-template-columns: repeat(3, 1fr);
}


/* MOBITEL */

@media (max-width: 700px) {

    .navbar {
        padding: 18px 5%;
    }

    .hero {
        min-height: calc(100vh - 65px);

        padding: 40px 20px;
    }

    .hero-label {
        font-size: 12px;

        letter-spacing: 1.5px;

        margin-bottom: 10px;
    }

    .hero-organizer {
        display: block;

        margin-bottom: 18px;

        font-size: 13px;
        font-weight: 900;

        letter-spacing: 1px;

        color: #111111;
    }

    .hero h1 {
        font-size: clamp(52px, 16vw, 80px);

        letter-spacing: -3px;
    }

    .hero-slogan {
        font-size: 18px;

        letter-spacing: 2px;

        margin-top: 15px;
    }

    .hero-info {
        font-size: 19px;
    }

    .hero-sports {
        font-size: 15px;
    }


    /* INFO */

    .info-section {
        grid-template-columns: 1fr;

        padding-top: 20px;
        padding-bottom: 40px;
    }


    /* SPORTOVI */

    .sports-section {
        padding: 60px 0;
    }

    .sports-grid,
    .extras-grid {
        grid-template-columns: 1fr;
    }

    .sport-card {
        min-height: 260px;
    }

    .race-card {
        min-height: auto;
    }


    /* KATEGORIJE UTRKE */

    .race-details {
        margin-top: 24px;
    }

    .race-category {
        padding: 15px 0;
    }

    .race-category-title strong {
        font-size: 12px;
    }

    .race-category-title small {
        font-size: 11px;
    }

    .race-distance {
        font-size: 14px;
    }


    /* OSTALO */

    .start-time strong {
        font-size: 15px;
    }

    .extras-section {
        padding-top: 30px;
        padding-bottom: 70px;
    }

}
