/* Opće postavke */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Hero sekcija */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/hero_banner_chess.webp'); 
    background-size: cover;
    background-position: center;
    min-height: 70vh;
}

/* Navbar prilagodbe */
.navbar-brand {
    letter-spacing: 1px;
}

/* Stilovi za ikone u karticama */
.icon-box {
    font-size: 2.5rem;
    color: #ffc107;
}

/* Kartice */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* Prilagodbe za mobilne uređaje */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section {
        min-height: 50vh;
    }
}

/* Ograničenje visine slika da ne zauzmu cijeli ekran */
.carousel-img {
    height: 450px; 
    object-fit: cover; /* Ovo sprečava razvlačenje slike */
}

/* Prilagodba za mobitele */
@media (max-width: 768px) {
    .carousel-img {
        height: 250px;
    }
}

/* Galerija za desktop (računala) */
.carousel-img {
    height: 500px;
    object-fit: cover; 
    width: 100%;
}

/* Galerija za mobitele - još niža visina */
@media (max-width: 768px) {
    .carousel-img {
        height: 300px;
    }
}

/* Opciono: manji centrirani box */
#klubCarousel {
    max-width: 900px; 
    margin: 0 auto; 
}

.hero-small {
    min-height: 150px !important;
    height: 150px !important;
}

.hero-small {
    background-size: cover;
    background-position: center;
}

.naslovna-poruka {
    font-size: 40pt;
    font-weight: 800;
    text-align: right;
}

.clanstvo-form-container {
  position: relative;
  width: 100%;
}

.clanstvo-form-container iframe {
  width: 100%;
  height: 1300px;
  border: none;
}