

/* SECTION WRAPPER */
.program-section {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

/* TITLE (ako dodaš naslov na stranici) */
.program-section h2 {
  text-align: center;
  font-size: 30px;
  color: #062a5e;
  margin-bottom: 20px;
  position: relative;
}

/* underline effect */
.program-section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #062a5e, #b8860b);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID LAYOUT */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD STYLE */
.program-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* TOP COLOR STRIPE */
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #062a5e, #b8860b);
}

/* HOVER EFFECT */
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* TITLE INSIDE CARD */
.program-card h3 {
  color: #062a5e;
  font-size: 20px;
  margin-bottom: 12px;
}

/* TEXT */
.program-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .program-section {
    margin: 50px auto;
  }

  .program-card {
    padding: 20px;
  }
}
@media (max-width: 768px) {

  /* HERO */
  .page-hero {
    height: 60vh;
    padding: 0 15px;
    text-align: center;
  }

  .page-hero-content h1 {
    font-size: 26px;
  }

  .page-hero-content p {
    font-size: 14px;
  }

  /* SECTION */
  .program-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  /* GRID → STACK */
  .program-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* CARDS */
  .program-card {
    padding: 18px;
    border-radius: 12px;
  }

  .program-card h3 {
    font-size: 18px;
  }

  .program-card p {
    font-size: 14px;
    line-height: 1.6;
  }

}
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #062a5e;
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 2001; /* 🔥 ADD THIS */
  }

  .nav-links.active {
    display: flex;
  }

}