@charset "utf-8";
/* CSS Document */

* { box-sizing: border-box; }

body {
    max-width: 100%;
    margin: 0 ; 
}

/* Einheitliche, serifenlose Schrift */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.img-fluid{
  border: none;   
  margin-top: 20px;
  width: auto;
}


.img {
    img: 90%;
    high: auto;
}

.bg__video {
position:fixed;
top: 0;
left: 0;
min-width:100%;
min-height:100%;
width:auto;
height:auto;
z-index: -100;
}   


    
.flex{   
    display: flex; 
    justify-content: center; 
    align-items: center;
    margin-top: 1em;
}

main {
  display: block;   
  max-width: 1200px;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  background:rgba(253,253,253,1.00);
  color: #333;
  border-radius: 30px;
  border: thin solid #DDF721;
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  height: auto;}


/* Button-Stil */
.btn-eltern {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid rgba(70,130,180,.35);
  text-decoration: none;
  font-weight: 800;
  background: radial-gradient(100% 100% at 30% 20%, #fff 0%, #eef7ff 50%, #dbeeff 100%);
  color: #0f2542;
}
.hint { font-size: .9rem; opacity: .7; margin-top: .35rem; }

/* Links ohne Unterstreichung */
a:link, a:visited { text-decoration: none; }



/* ===============================
   Eltern-Fotogalerie
   =============================== */

/* Container */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding: 0 20px;
}

/* Einheitliche, harmonische Bilddarstellung */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* leichter Hover-Effekt */
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

body.familienauswahl {
  background: linear-gradient(180deg, #e9f4ff 0%, #cde6ff 100%);
  background-attachment: fixed;
}

.familienauswahl-main {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}

.familienauswahl-main .card {
  margin: 40px 0;
}

