@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&family=Amatic+SC:wght@400;700&family=Open+Sans:wght@300;400;600&family=Playfair+Display:wght@400;700&display=swap');

a:link{
    color: #ffffff;
    text-decoration: underline;
}


body {
    font-family: Arial;
    background-color: #344b00d7;
}

*{
    margin: 0;
    padding: 0;
}


/* === HEADER & NAVIGATION === */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Navbar Layout */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: "Amatic SC", cursive;
  font-size: 1.8rem;
  color: white;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: #d1d3b1;
  border-bottom: 2px solid #d1d3b1;
}

footer {
    text-align: center;
    margin: 20px;
}

section {
    height: auto; 
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
}

.section1 {
    display: flex;
    background-image: url('/images/alle.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 30% 41%;
    height: 650px;
    width: 100%;
    font-family: Momo Signature;
    font-size: 2rem;
}

.section2 {
    font-family: Amatic SC;
    font-size: 40px;
    text-align: center;
}

.section3 {
    font-family: Amatic SC;
    font-size: 35px;
    text-align: center;
}

.section2 p.left {
    text-align: left;
}


.btn {
    text-decoration: none;
    margin-top: 20px;
    padding: 1px 25px;
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: white;
    color: black;
}


/* Über mich */

.sectionich {
  display: flex;
  justify-content: left;
  gap: 20px;               
  padding: 10px 10px;
}

.ich-img {
  width: 30%;
  height: 10%;
  border-radius: 10px;
  object-fit: cover;      
}

.ich-text {
  width: 60%;
  font-family: Amatic SC;
  line-height: 1.6;
  color: #ffffff;
}


/* Das Team */

.sectionwinnie {
  display: flex;
  justify-content: left;
  gap: 20px;               
  padding: 10px 10px;
}

.winnie-img {
  width: 30%;
  height: 10%;
  border-radius: 10px;
  object-fit: cover;      
}

.winnie-text {
  width: 60%;
  font-family: Amatic SC;
  line-height: 1.6;
  color: #ffffff;
}


.sectionpassa {
  display: flex;
  justify-content: right;
  gap: 20px;              
  padding: 10px 10px;
}

.passa-img {
  width: 30%;
  height: 10%;
  border-radius: 10px;
  object-fit: cover;       
}

.passa-text {
  width: 60%;
  font-family: Amatic SC;
  line-height: 1.6;
  color: #ffffff;
}


.sectionasterix {
  display: flex;
  justify-content: left;
  gap: 20px;           
  padding: 10px 10px;
}

.asterix-img {
  width: 30%;
  height: 10%;
  border-radius: 10px;
  object-fit: cover;      
}

.asterix-text {
  width: 60%;
  font-family: Amatic SC;
  line-height: 1.6;
  color: #ffffff;
}


/* Gallerie */


.gallery-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

.gallery {
  column-count: 3;
  column-gap: 0.5rem;
}

.gallery img {
  width: 100%;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Responsives Verhalten */
@media (max-width: 900px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}


/* Kontakt */

.contact-section {
  position: relative;
  background-image: 
    linear-gradient(to right, #ffffff 5%, rgba(255,255,255,0) 60%), 
    url("../images/winniekuss.jpg");
  background-size: cover;
  background-position: 0px 1330px;
  height: 610px;
  display: flex;
  align-items: center;
  justify-content: right ;
}

.contact-text {
  position: absolute;
  top: 5px;       
  right: 60px;     
  color: white;
  font-family: "Amatic SC";
  font-size: 2rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.4); 
  padding: 15px 25px;
  border-radius: 8px;
}