/* Háttér, arculat, általános */
body {
  background: linear-gradient(135deg, #0366d6 0%, #67cef7 100%);
  min-height: 100vh;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('images/hatter.jpg') center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 600px) {
  .hero { padding: 2rem 0.7rem; }
  .hero-title { font-size: 1.5rem; }
}

/* Navbar és menüpontok */
.navbar {
  margin: 0 !important;
  border-radius: 0 !important;
  width: 100vw;
  box-shadow: none;
  background-color: rgba(3, 54, 214, 0.55) !important;
}
.navbar-nav .nav-link {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s;
  color: #fff !important;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  background-color: #ffc107;
  color: #073263 !important;
}

/* Hero főoldal */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.10);
  border-radius: 1.5rem;
  margin: 2rem auto;
  box-shadow: 0 0 30px 0 rgba(26, 36, 94, 0.10);
  max-width: 700px;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
}
.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.9);
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(33,52,70,0.08);
}
.hero-title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 18px #0008, 0 1px 0 #0366d6;
}
.hero-sub {
  font-size: 1.22rem;
  font-weight: 400;
  color: #f6f6f6;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px #00326c77;
}

/* Általános gomb */
.btn-main {
  padding: 0.7rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 1.5rem;
  background: #ffcb05;
  color: #073263;
  border: none;
  transition: background 0.2s;
}
.btn-main:hover { background: #ffe170; color: #013163; }

/* Szekciócímek, bemutatkozás, h2 stb. */
h2, label, #form-alert, .cs-header { color: #fff !important; text-shadow: 0 1px 12px #00326c66; }
p, input, textarea { color: #fff; }
.form-control {
  background: #083366cc;
  border: 1px solid #ddeeff;
  color: #fff;
}
.form-control:focus {
  background: #0166d6ee;
  border: 2px solid #ffd700;
  color: #fff;
}

/* Kapcsolat elérhetőségek panel */
#kontakt-info {
  background-color: rgba(255,255,255,0.15);
  border-radius: 1rem;
}
#kontakt-info a:hover { text-decoration: underline; color: #ffc107; }

/* Lábléc */
footer.text-center {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 0.4rem;
  margin-top:2rem;
}

/* Kiemelt infó/adószám sáv */
.donation-alert {
  background-color: #ffd700cc;
  color: #073263;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.6rem;
  box-shadow: 0 2px 10px rgb(3 42 94 / 20%);
}

/* Meccsnaptár badge */
.badge.bg-primary {
  background: #0366d6 !important;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 0.4em 1em 0.35em 1em;
}

/* Csapatkártya oldal - kiegészítők */
.cs-header { text-shadow: 0 2px 12px #00326c88; font-size: 2rem; }
.team-card {
  background: rgba(255,255,255,0.97);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.team-card:hover { box-shadow: 0 12px 30px #0366d688; }
.card-img-top {
  width: 100%;
  /*max-height: 280px;
  object-fit: cover;
  border-bottom: 3px solid #ffcb05;*/
   aspect-ratio: 4/5;          /* vagy amit a kártyához használsz */
  object-fit: contain;
  background: #f4f4f4;         /* vagy transzparens */
  border-bottom: 3px solid #ffcb05;
}
.card-title { font-weight: 700; color: #073263; }
.card-subtitle { font-weight: 500; }
.card-text { color: #134872; font-size: 1.05rem; }
