html{
scroll-behavior: smooth;
}

@font-face {
  font-family: 'party-vibes';
  src: url('fonts/party-vibes.otf') format('opentype');
}


/* Navigationsknöpfe */ 
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  top: 66px;
  z-index: 20;
  padding-bottom: 15px;
}

.nav-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #3a2a20;
  background: #FFFBDE; 
  color: #3a2a20;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #3a2a20;
  color: #FFFBDE;
}
/* Navigationsknöpfe */ 



/* 1. Teil Pink Vorstellung Maria*/ 
img {
  max-width: 90%;
  height: auto;
  display: block;
}

.page-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  font-family: sans-serif;
  background: #FFFBDE;
  color: #3a2a20;
  margin: 0;
}

.hero {
  text-align: center;
  padding: 80px 15px 30px;
  background: #F8C8D8;
  position: relative;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 60px);
  font-family: 'party-vibes';
  letter-spacing: 4px;
  text-align: center;
  margin: 0;
}

.hero p {
  font-size: 16px;
  font-family: 'arial';
  letter-spacing: 4px;
}

/* 1. Teil Pink Vorstellung Maria*/ 



/* About-Sektion*/ 
.about {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 10%;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-image {
  flex: 0 0 250px;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h1 {
  font-size: 30px;
  line-height: 1.0;
}

.about-text h2 {
  font-size: 22px;
  line-height: 1.0;
}

.about-text p {
  max-width: 700px;
  line-height: 1.3;
  font-size: 18px;
}

/* About-Sektion*/ 



/* Portfolio - Was sie bis jetzt gemacht hat*/ 
.portfolio {
  padding: 80px 10%;
}

.portfolio h2 {
  font-family: 'party-vibes';
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
/* Card-Grundstruktur */
.card {
  position: relative; 
  overflow: hidden;   
}

/* Bild normal anzeigen */
.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
  border-radius: 10px;
}

/* Bild dunkler beim Hover */
 .card:hover img {
  filter: brightness(50%);
}

/* Overlay-Text */
.card .overlay-text {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 20px;
  opacity: 0;                
  pointer-events: none;      
  transition: opacity 0.3s ease;
  text-align: center;
}

/* Overlay sichtbar beim Hover */
.card:hover .overlay-text {
  opacity: 1;
}

.card p {
  margin-top: 10px;
  font-weight: bold;
}


/* Portfolio - Was sie bis jetzt gemacht hat*/ 



/* Termine - Wo es noch hingeht*/ 
.dates {
  padding: 20px 10%;
  background: #F8C8D8;
  padding-bottom: 50px;
}

.dates h2 {
  font-family: 'party-vibes';
  margin: 20px 0 0 0;
  margin-bottom: 20px;
}

.dates-subline {
  font-size: 18px;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
}

.dates-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.dates-right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dates-image {
  flex: 0 0 28%;
} 


.dates-button {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.dates-image img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}
	
.dates-list {
  flex: 1;
  min-width: 280px;

  display: grid;
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 90px 40px;
}

.date-list-item {
  padding: 0 0 12px 0;
  border-bottom: 1px solid rgba(58, 42, 32, 0.18);
}

.date-main {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
}

.date-venue {
  margin: 0 0 14px 0;
  font-size: 18px;
  line-height: 1.4;
}

.date-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.date-link:hover {
  opacity: 0.4;
}

.empty-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .dates-layout {
    flex-direction: column;
  }

  .dates-image {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .dates-list {
    display: block;
  }

  .date-list-item {
    margin-bottom: 20px;
  }

  .date-main {
    font-size: 20px;
  }

  .date-venue {
    font-size: 16px;
  }

 }
/* Termine - Wo es noch hingeht*/ 

/*Zukunft */
.future {
  background: #FFFBDE;
}

.future .page-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px 18% 30px;
  background: #FFFBDE;
}

.future-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.future-content img {
  width: 26%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.future-content p {
  flex: 1;
  max-width: 500px;
  margin: 0;
  line-height: 1.5;
  font-size: 18px;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

.future h2 {
  font-family: 'party-vibes';
  margin: 20px 0 0 0;
  margin-bottom: 20px;
}
/* Footer */

.footer {
  background: #F8C8D8;
  padding: 10px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  font-family: 'party-vibes';
  color: #3a2a20;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}




@media (max-width: 768px) {

  /* Allgemeiner Abstand */
  section {
    padding-left: 32px !important;
    padding-right: 32px !important;
    box-sizing: border-box;
  }

  .page-wrapper {
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  /* Hero */
  .hero {
    padding-bottom: 30px;
  }

.hero-buttons {
  top: 66px;
  gap: 10px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-btn {
  padding: 10px 18px;
  font-size: 14px;
  letter-spacing: 0.5px;
  min-width: unset;
}

  .hero h1 {
    font-size: 45px;
    letter-spacing: 3px;
  }

  /* Überschriften */
  h2 {
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
  }

  /* Zeilenumbrüche entfernen */
  br {
    display: none;
  }

  /* =========================
     ABOUT
  ========================= */

  .about {
    padding-top: 110px;
    padding-bottom: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .about-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .about-text {
    width: 100%;
    text-align: center;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }

  /* =========================
     PORTFOLIO
  ========================= */

  .portfolio {
    padding-left: 32px;
    padding-right: 32px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .card p {
    text-align: center;
  }

  .overlay-text {
    left: 50% !important;
  }

  /* =========================
     DATES
  ========================= */

  .dates {
    padding-left: 32px;
    padding-right: 32px;
  }

  .dates-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .dates-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .dates-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .dates-right {
    width: 100%;
    align-items: center;
  }

  .dates-list {
    display: block;
    width: 100%;
  }

  .date-list-item {
    margin-bottom: 24px;
  }

  .date-main {
    font-size: 20px;
    line-height: 1.4;
  }

  .date-venue {
    font-size: 16px;
    line-height: 1.5;
  }

 /* =========================
   FUTURE
========================= */

.future {
  padding-left: 32px;
  padding-right: 32px;
}

.future .page-wrapper {
  padding: 20px 0 30px;
}

.future-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.future-content img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 10px;
}

.future-content p {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

  /* =========================
     FOOTER
  ========================= */

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }

}
}

