/* === Grundstil === */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Andada Pro', serif;
}

p {
  font-family: 'Montserrat';
}


/* === Navigation === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Platz zwischen Logo und Menü */
  padding: 0 20px; /* etwas weniger Abstand links/rechts */
  position: fixed;
  top: 0;
  width: calc(100% - 0px); /* volle Breite ohne Überlauf */
  height: 70px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  backdrop-filter: blur(6px);
  box-sizing: border-box; /* verhindert Überlauf durch Padding */
}

.logo-box {
  width: 60px;
  height: 60px;
  background-color: #001f3f; /* Marineblau */
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s;
  padding: 10px 15px; /* Abstand um den Link */
  display: inline-block;
}

.nav-links a:hover {
  color: #66a3ff;
}


/* === Header / Hero-Bereich === */
.hero {
  height: 100vh; /* volle Höhe */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("Images/HeaderHintergrund.png") no-repeat center center/cover;
  text-align: center;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  color: black;
}

.hero-content p {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-top: 20px;
  font-weight: 300;
  color: black
}

.zweier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* zwei Spalten */
  gap: 60px; /* Abstand zwischen den Boxen */
  justify-content: center; /* Grid mittig platzieren */
  padding: 60px 20px; /* Abstand rundherum */
  padding-bottom: 400px;
  background: #ffffff; /* dunkler Hintergrund (optional) */
  max-width: 1600px; /* maximale Breite des Inhalts */
  margin: 0 auto;  
}

.kachel1 {
  background: url(Images/jairph-YPL0a8V9QGo-unsplash.jpg);
  background-size: cover;
  background-position: center;
  height: 600px; /* feste Höhe */
  border-radius: 10px;
  display: flex;
  align-items: center;  /* Text vertikal zentrieren */
  justify-content: center; /* Text horizontal zentrieren */
  color: white;
  font-size: 1.5rem;
}

.kachel2 {
  height: 300px; /* feste Höhe */
  border-radius: 10px;
  color: white;
  
}

.kachel2 h2{
  color: black;
  font-size: 3.5rem;
  margin-top: 0px;
  margin-bottom: 10px;
}

.kachel2 h3{
  color: black;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0px;

}

.kachel2 p{
  color: black;
  font-size: 1.7rem;
  line-height: 1.6;
}





/* === Vollbreiter Banner / Störer === */
.banner {
  width: 100%;
  height: 500px; /* kannst du anpassen */
  background: url("Images/Auto_Banner.png") no-repeat center center/cover;
  margin: 0;
  padding: 0;
}







/* === Bereich: Foto & Video === */
.foto-video {
  width: 100%;
  background-color: #ffffff; /* Hintergrundfarbe */
  display: flex;
  justify-content: flex-start; /* Inhalt horizontal zentrieren */
  padding-top: 400px;
  padding-left: 300px;
  padding-bottom: 400px;
  box-sizing: border-box;

}

.foto-video .content {
  max-width: 900px; /* Begrenzte Breite für guten Lesefluss */
  text-align: left; /* Text linksbündig */
}

.foto-video h2 {
  font-family: 'Andada Pro', serif;
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 20px;
  margin-top: 0px;
}

.foto-video p {
  font-size: 1.7rem;
  color: #000;
  line-height: 1.6;
}


.foto-video h4{
  font-family: 'Parisienne';
  color: black;
  font-size: 40px;
}

.foto-video h3{
  color: black;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0px;

}






/* === Portfolio === */
.portfolio {
  background-color: #ffffff;
  padding: 200px 40px 0px;
  text-align: center;
}

.portfolio h2 {
  font-family: 'Andada Pro', serif;
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 20px;
}

.portfolio p {
  color: black;
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 900px; /* begrenzt die Textbreite */
  margin: 0 auto 60px auto; /* zentriert und Abstand nach unten */
  text-align: center; /* Text bleibt mittig */
}



/* Grid */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Einzelne Kachel */
.portfolio-item {
  flex: 1 1 calc(25% - 30px); /* 4 Spalten bei genug Platz */
  aspect-ratio: 1 / 1; /* quadratische Kacheln */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* .portfolio-item:hover {
  transform: scale(1.03);
} */

/* Overlay beim Hover */
/* .portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item .overlay p {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
} */







/* === Videoproduktion === */
.videoproduktion {
  background-color: #ffffff;
  padding: 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoproduktion .content {
  max-width: 100vw;
  width: 100%;
  text-align: center;
}

.videoproduktion h2 {
  font-family: 'Andada Pro', serif;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 60px;
}

.videoproduktion video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}









/* === Footer === */


.footer {
  width: 100%;
  background: url("Images/FooterHintergrund.png") no-repeat center center/cover; /* Hintergrundbild */
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 100px;
  box-sizing: border-box;
  border-top: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

/* Inhalt des Footers über dem Hintergrund */
.footer > * {
  position: relative;
  z-index: 1;
}


.footer-left img.footer-logo {
  width: 80px;
  height: auto;
}

.footer-center {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-center a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-center a:hover {
  opacity: 0.6;
}

.footer-right {
  text-align: right;
}

.footer-right h4 {
  font-family: 'Andada Pro', serif;
  font-size: 1rem;
  margin-bottom: 5px;
}

.footer-right .insta-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

.footer-right .insta-icon:hover {
  opacity: 0.7;
}










/* === Kontaktformular === */
.kontaktformular {
  background-color: #ffffff;
  text-align: center;
  padding: 200px 40px;
  color: #000;
}

.kontaktformular h2 {
  font-family: 'Andada Pro', serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.kontaktformular p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: #333;
}

.kontakt-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: #66a3ff;
}

.form-grid textarea {
  grid-column: 1 / span 2;
  resize: none;
}

.kontakt-form button {
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  background-color: #001f3f;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kontakt-form button:hover {
  background-color: #003366;
}

/* Mobil-Ansicht */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .kontaktformular {
    padding: 100px 20px;
  }

  .kontaktformular h2 {
    font-size: 2.5rem;
  }

  .kontaktformular p {
    font-size: 1.1rem;
  }
}




















@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    }
}










/* Responsiv */
@media (max-width: 1200px) {
  .portfolio-item {
    flex: 1 1 calc(50% - 30px); /* 2 Spalten */
  }
}

@media (max-width: 768px) {
  .portfolio-item {
    flex: 1 1 100%; /* 1 Spalte */
  }
}




















@media (max-width: 800px) {
  

  /* === Header / Hero-Bereich === */
.hero {
  height: 100vh; /* volle Höhe */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("Images/HeaderMoil.png") no-repeat center center/cover;
  text-align: center;
}


  
  .hero h1{
    font-size: 2.7rem;
  }
  
   .hero p{
    font-size: 0.8rem;
  }
  

  .zweier-grid {
    display: grid;
    grid-template-columns: 1fr; /* nur eine Spalte */
    grid-template-areas:
      "text"
      "bild";
    gap: 20px;
    
  }

  .kachel2 {
    grid-area: text; /* Text zuerst */
  }

  .kachel2 h2{
  color: black;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.kachel2 h3{
  font-size: 1rem;
}





  .kachel1 {
    grid-area: bild; /* Bild danach */
    height: 300px; /* feste Höhe, Bild bleibt sichtbar */
    background-size: cover;
    background-position: center;
  }

  .kachel2 {
    height: auto; /* Texthöhe passt sich automatisch an */
  }

.zweier-grid {
 padding-bottom: 200px;
 padding-left: 40px;
 padding-right: 40px;
  
}

  .foto-video {
  width: 10%;
  background-color: #ffffff; /* Hintergrundfarbe */
  display: flex;
  justify-content: flex-start; /* Inhalt horizontal zentrieren */
  padding-top: 100px;
  padding-left: 50px !important;
  padding-right: 50px;
  padding-bottom: 100px;
  box-sizing: border-box;

}

.foto-video h2 {
  font-family: 'Andada Pro', serif;
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 20px;
}

.foto-video p {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.6;
}



.foto-video h4{
  font-family: 'Parisienne';
  color: black;
  font-size: 30px;
}

.foto-video h3{
  color: black;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0px;

}


.portfolio {
  background-color: #ffffff;
  padding: 50px 40px;
  text-align: center;
}

.portfolio h2 {
  font-family: 'Andada Pro', serif;
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 20px;
}

.portfolio p {
  color: black;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 900px; /* begrenzt die Textbreite */
  margin: 0 auto 60px auto; /* zentriert und Abstand nach unten */
  text-align: center; /* Text bleibt mittig */
}

/* === Videoproduktion === */
.videoproduktion {
  background-color: #ffffff;
  padding: 30px 0px;
  padding-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoproduktion .content {
  /* max-width: 100vw; */
  width: 100%;
  text-align: center;
}

.videoproduktion h2 {
  font-family: 'Andada Pro', serif;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 60px;
}

.videoproduktion video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio{
  background-color: #ffffff;
  padding: 0px 40px;
  text-align: center;
}

/* === Footer: Responsive Optimierung === */


/* Inhalt über dem Hintergrund */
.footer > * {
  position: relative;
  z-index: 1;
}

/* Logo */
.footer-left img.footer-logo {
  width: 80px;
  height: auto;
  max-width: 100%; /* wichtig für Mobilgeräte */
}

/* Center */
.footer-center {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-center a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-center a:hover {
  opacity: 0.6;
}

/* Right */
.footer-right {
  text-align: right;
}

.footer-right h4 {
  font-family: 'Andada Pro', serif;
  font-size: 1rem;
  margin-bottom: 5px;
}

.footer-right .insta-icon {
  width: 30px;
  height: 30px;
  margin: 5px;
  transition: opacity 0.3s;
}

.footer-right .insta-icon:hover {
  opacity: 0.7;
}

.kachel2 p{
  color: black;
  font-size: 1.2rem;
  line-height: 1.6;
}

.zweier-grid {
 padding-bottom: 200px;
 padding-left: 40px;
 padding-right: 40px;
  
}
/* === Responsive für Tablets und Handys === */
@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
  }

  .footer-left img.footer-logo {
    width: 60px; /* kleineres Logo auf Mobilgeräten */
    margin-bottom: 15px;
  }

  .footer-right {
    text-align: center;
  }

  .footer-right h4 {
    margin-top: 10px;
    font-size: 1rem;
  }

  .footer-right .insta-icon {
    width: 40px; /* Icons etwas größer für Touch */
    height: 40px;
    margin: 5px 10px;
  }

  .footer-center {
    font-size: 0.9rem;
  }

  .kachel2 p{
  color: black;
  font-size: 1.2rem;
  line-height: 1.6;
}

}

@media (max-width: 500px) {
  .footer-left img.footer-logo {
    width: 50px; /* noch kleiner auf sehr kleinen Handys */
  }

  .footer-right .insta-icon {
    width: 35px;
    height: 35px;
  }

  .footer-center {
    font-size: 0.85rem;
  }

  .footer {
    padding: 30px 15px;
  }
}




/* === Fix gegen horizontales Scrollen === */
html, body {
  overflow-x: hidden;
  width: 100%;
}
.videoproduktion .content {
  max-width: 100%;
}


}


/* === Fix gegen horizontales Scrollen === */
html, body {
  overflow-x: hidden;
  width: 100%;
}
.videoproduktion .content {
  max-width: 100%;
}



@media (max-width: 900px) {
.footer {
  position: relative;
  background: url("Images/FooterMobilHintergrund.png") no-repeat center center/cover;
}


}