@font-face {
    font-family: 'Handschrift';
    src: url('/fonts/GloriaHallelujah-Regular.ttf') format('truetype');
    font-weight: 100 900;   /* erlaubt alle Gewichtungen */
    font-style: normal italic bold;
}

/*Generelles*/
html, body{
  overflow-x: hidden;
}

body {
  margin: 0px;
  padding: 0 10px;
  background-color: bisque;
  font-family: Arial, Helvetica, sans-serif;
}

a{
  text-decoration: none;
  color: black;
}

:root{
  --heart-pink: #ffb6ca;
  --heart-red: #c2185b;
  --navbar-background: rgb(167,22,11);
  --box-shadow-base: rgb(0,0,0,0.1);
  --reise-farbe: rgb(91,90,90)
}

/*Rosencontainer*/
.container-rosen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/*Rosen fallen mit JS*/
.roses {
  position: absolute;
  top: -50px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, var(--heart-pink), var(--heart-red));
  border-radius: 60% 40% 70% 30%;
  opacity: 0.9;
  animation: fall linear forwards;
}

/*animierender Keyframe, triggered durch JS*/
@keyframes fall{
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}


/*Navbar Styling*/
.navbar{
  top:0;
  height: 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--navbar-background);
}

.nav-header{
  display: flex;
  align-items: center;
  gap: 30px;
}

/*Mitte*/
.navbar-main{
  color: white;
  font-size: 15px;
}

.navbar a:hover{
  cursor: pointer;
}

.navbar p{
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid white;
  padding: 10px 20px;
}

/*Blumen oben rechts und links*/
/* links oben */
.navbar p::before {
  content: "🌸";
  position: absolute;
  top: -18px;
  left: -18px;
  font-size: 1.5rem;
}

/* rechts oben */
.navbar p::after {
  content: "🌼";
  position: absolute;
  top: -18px;
  right: -18px;
  font-size: 1.5rem;
}

/*Links und Rechts*/
.navbar-anker{
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
}

.navbar-anker {
  transition: all 0.3s ease;
}

.navbar-anker:hover{
  cursor: pointer;
  background-color: white;
  color: rgb(167, 22, 11);
}




/*Styling der First-Row*/
.flexbox-first-row{
  display: flex;
  justify-content: space-around;
  padding-top: 30px;
}

.flexbox-first-row div img{
  flex-grow: 1;
  height: 500px;
  border-radius: 20px;
  box-shadow: 5px 5px 10px gray;
}

/*Herz erstellen*/
.flex-heart{
  margin-top: 200px;
  background-color: var(--navbar-background);
  position: relative;
  width: 140px;
  height: 120px;
  transform: rotate(-45deg) scale(2);
  transform-origin: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 10px gray;
  cursor: pointer;
}

.flex-heart::before, .flex-heart::after{
  content: "";
  position: absolute;
  width: 140px;
  height: 120px;
  background-color: var(--navbar-background);
  border-radius: 50%;
  z-index: -1;
}

.flex-heart::before{
  top:-60px;
  left: 0
}

.flex-heart::after {
  left:60px;
  top: 0;
}

.flex-heart span{
  transform: rotate(45deg);
  color: white;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  pointer-events: none;
}

/*Keyframes Herz pulsieren*/
@keyframes pulse{
  0% {
    transform: rotate(-45deg) scale(2);
  }
  50% {
    transform: rotate(-45deg) scale(2.2);
  }
  100%{
    transform: rotate(-45deg) scale(2);
  }
}

/*JS Klasse*/
.flex-heart.pulsing{
  animation: pulse 0.8s ease-in-out infinite;
}


/*Zwischenelement zwischen den beiden Steckbriefen*/
#bild-steckbriefe-verbunden{
  display: flex;
  justify-content: center;
}

#img-verbunden{
  height: 100px;
}





/*Außencontainer*/
.steckbriefe{
  margin: 30px 0px;
  box-shadow: 5px 5px 10px gray;
}

/*Einzelne Innencontainer*/
.container{
  background-color: white;
  border: 3px solid black;
  border-radius: 15px;
  box-shadow: 0 4px 6px var(--box-shadow-base);
  padding: 20px 50px;
}

/*Überschriften der Steckbriefe*/
.name div h2{
  text-align: center;
}

/*Flexcontainer für die 3 Divs im Steckbrief*/
.flex-container-steckbriefe{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*Profilbild DIV*/
.profil-img{
  max-width: 100%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgb(105, 5, 5);
}

/*Profilbild Image steuern*/
.bild-person{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*Flexbox der Steckbrief Antworten*/
.info{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/*Steckbrief Infos*/
.steckbrief-infos{
  background: #f8f9fb;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--box-shadow-base);
}

.steckbrief-infos strong{
  color: #333;
  margin-right: 10px;
}

.steckbrief-infos div {
  display: flex;
  justify-content: space-between;
  margin-bottom: .4rem;
  align-items: center;
  font-size: 18px;
}

.steckbrief-infos div span a{
  text-decoration: underline;
}

.steckbrief-infos div span {
  font-family: "Handschrift";
}
.steckbrief-emoji{
  font-size: 6rem;
}




/*Ober Container*/
.hochzeitsplanung{
  display: flex;
  justify-content: space-around;
  margin: 100px 0px;
}

/*Checkliste*/
.checklist{
  padding: 0;
}

.checkliste li{
  list-style: none;
  font-size: 15px;
}

.checklist input:checked + label {
  text-decoration: line-through;
  color: #888;
}

/*Einzelne Checklisten*/
.checklisten-cats{
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.checkliste-location{
  background-color: lightblue;
}

.checkliste-gäste{
  background-color: lightcoral;
}

.checkliste-essen{
  background-color: lightgreen;
}



/*Spotify Element Container*/
.spotify{
  border-radius: 12px;
  border: 3px solid black;
  box-shadow: 0 4px 6px var(--box-shadow-base);
}

/*Spotify Einbindungsframe*/
.spotify-frame{
  height: 100%;
  max-width: 100%;
  width: 500px;
}


/*Mitbringliste und Wunschtermin*/
.list-info{
  background-color: lightsalmon;
  padding: 5px;
  border-radius: 12px;
}


/*Formular fürs Mitbringen*/
.form-container{
  background-color: lightskyblue;
  padding: 5px;
  margin-top: 10px;
  border-radius: 12px;
}

form{
  display: flex;
  flex-direction: column;
  padding: 0px 5px;
}

form input {
  margin-bottom: 15px;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  padding: 0px 10px;
  height: 30px;
}

form input:focus {
  outline: 2px solid cornflowerblue;
}

form label{
  font-weight: bold;
}

#button-einschreiben{
  height: 60px;
  width: 80%;
  align-self: center;
  background-color: cornflowerblue;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 10px;
  margin-top: 10px;
}


/*Galerie mit Bildern*/
.liebesgalerie{
  margin: 0px 0px 50px 0px;
}

/*Großer Flex-Container*/
.flexcontainer-galerie{
  display: flex;
  gap: 20px;
  justify-content: space-around;
}
.outer-img{
  height: 526px;
  border: 3px solid var(--reise-farbe);
  border-radius: 12px;
}

/*3 kleine innen Flexcontainer*/
.small-flex-galerie{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-flex-galerie img{
  height:250px;
  border: 3px solid var(--reise-farbe);
  border-radius: 12px;
}

.outer-img,
.small-flex-galerie img {
  max-width: 100%;
}


/*Footer*/
.footer{
  background-color: rgb(32, 26, 26);
  color: white;
  padding: 40px 20px 20px 20px;
}

.footer a{
  color: white;
  text-decoration: none;
}

.footer a:hover{
  text-decoration: underline;
}

.footer-container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section{
  min-width: 150px;
}

.footer-section h3{
  margin-bottom: 10px;
}

.footer-bottom{
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
}