
/* General Styles */
body {
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333333;
}

/* Navbar */
header {
  border-bottom: 1px solid #e5e7eb;
}

header a {
  transition: color 0.2s ease-in-out;
}

header a:hover {
  color: #005fa3; /* dark blue hover */
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-section a {
  background-color: #007bce;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background-color 0.2s ease-in-out;
}

.hero-section a:hover {
  background-color: #005fa3;
}

/* Section Titles */
section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222222;
}

/* Paragraphs */
section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Card Style */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #111827;
  color: white;
}

footer a {
  color: #93c5fd;
}

footer a:hover {
  text-decoration: underline;
}


/* SLIDER tekstovi - bijeli */
.swiper-slide h1,
.swiper-slide p,
.swiper-slide a {
  color: white;
}

/* Naslovi segmenata - plavi */
section h2 {
  color: #1d4ed8; /* Tailwind blue-700 */
}

/* Linkovi "Saznaj više" - narančasti */
a.saznaj-vise,
section a.text-blue-600 {
  color: #f97316 !important; /* Tailwind orange-500 */
}

a.saznaj-vise:hover,
section a.text-blue-600:hover {
  color: #ea580c !important; /* Tailwind orange-600 */
}

#yearSelect {
  background-image: url("data:image/svg+xml;utf8,<svg fill='orange' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5rem;
  padding-right: 2.5rem;
}

<style>
/* Osnovni izgled linkova (override Tailwind ako postoji) */
.nav-link {
  color: #f97316 !important;      /* narančasta */
  text-decoration: none;
  position: relative;
  font-weight: 600;
}

/* Aktivni link: narančasta valovita crta ispod */
.nav-link.active {
  color: #f97316 !important;
  text-decoration: underline wavy #f97316;
  text-underline-offset: 4px;
}

/* Opcionalni hover (malo zatamni) */
.nav-link:hover { opacity: 0.95; }
</style>
.swiper-slide img {
  width: 100%;
  height: 450px;     /* visina  (npr. 400px, 500px...) */
  object-fit: cover; /* slika se reže proporcionalno da popuni okvir */
  border-radius: 8px; /*  zaobljeno  */
}


/* Ograniči container da ne raste više od same slike */
/* Samo za O nama galeriju */
.onama-swiper {
  max-width: 1000px;     /* širina galerije */
  margin: 0 auto;        /* centriraj */
  max-height: 500px;     /* ograniči visinu */
  overflow: hidden;
}

.onama-swiper .swiper-slide img {
  width: 100%;
  height: 500px;         /* sve slike iste visine */
  object-fit: cover;     /* zadrži proporcije */
  border-radius: 8px;
}


.member-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  color: #1f2937;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  text-align: left;
  
  /* NOVO: fleks za poravnanje imena dolje */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* iste visine unutar grida */
  min-height: 230px; /* možeš povećati ako želiš veće kartice */
}

/* Valovita linija */
.wave-line {
  width: 80px;
  height: 10px;
  margin-bottom: 0.75rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'><path d='M0,5 Q10,0 20,5 T40,5 T60,5 T80,5 T100,5 T120,5' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat;
  background-size: contain;
}

/* Ime uvijek pri dnu */
.member-card .name {
  margin-top: auto;
  text-align: left;
}

/* ===== VEĆI FORMAT ZA "SLANI TRENUTCI" GALERIJU ===== */
.myGallery {
  max-width: 90%;        /* širi slider — više zauzima na ekranu */
  margin: 0 auto;
}

.myGallery .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.myGallery .gallery-image {
  width: 100%;
  height: 500px;         /* povećaj visinu slike */
  object-fit: cover;     /* da se ne deformira */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekt za bolji osjećaj */
.myGallery .gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}





<!-- Google font -->
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400&display=swap" rel="stylesheet">

<style>
  /* Tvoj postojeći hero tekst */
  .hero-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 50px;
    color: #FFFFFF;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
  }

  /* Novi stil za tekst u sekcijama */
  .section-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 20px;
    line-height: 1.6;
    color: #231F20; /* tamno siva */
  }
</style>





