:root{
  --masmavi:#3078BE;
}

body{
  margin:0;
  background:#f9f9f9;  /* Farbe der Balken */
  font-family:'Pretendard', sans-serif;
  color:#111;
}

/* TOP HEADER */
.top-header{
  background:#f6f6f6;
  text-align:center;
  padding:40px 20px 30px;
}

.brand{
  margin-bottom:60px;
}

.logo{
  font-family:'Playfair Display', serif;
  font-size:34px;
  letter-spacing:6px;
  margin-bottom:8px;
}

.tagline{
  font-size:13px;
  letter-spacing:2px;
  color:var(--masmavi);
}

.nav{
  display:flex;
  justify-content:center;
  gap:120px;
  font-size:14px;
}

.nav a{
  text-decoration:none;
  color:#444;
  letter-spacing:2px;
  transition:.3s;
}

.nav a:hover{
  color:var(--masmavi);
}

/* HERO PARALLAX */

.hero-parallax{
  height:85vh;

  /* Bild */
  background:url("bilder/hero.jpg") no-repeat fixed;
  background-size:cover;
  background-position:5% center;

  /* Balken-Effekt */
  max-width:1900px;   /* Breite des Bildbereichs */
  margin:0 auto;      /* zentriert */

  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-right:10%;
}

.hero-overlay{
  color:white;
  text-align:right;
  margin-right:60px;
}

.hero-overlay h1{
  font-family:'Playfair Display', serif;
  font-size:180px;
  font-weight:400;
  margin:0;
}

@media (max-width:900px){
  .hero-overlay h1{
    font-size:72px;
  }
}

.hero-overlay p{
  font-size:22px;
  letter-spacing:3px;
  margin-top:10px;
  opacity:.9;
}

/* HERO */
.hero{
  height:80vh;
  background:url('bilder/hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-inner{
  background:rgba(255,255,255,0.85);
  padding:40px 60px;
}

.hero h1{
  font-family:'Playfair Display', serif;
  letter-spacing:5px;
  margin-bottom:10px;
}

.hero p{
  letter-spacing:3px;
  font-size:13px;
  text-transform:uppercase;
}

/* SECTIONS */
.section{
  padding:100px 10%;
  text-align:center;
}

.section h2{
  font-family:'Playfair Display', serif;
  letter-spacing:4px;
  margin-bottom:60px;
}

.light{
  background:#fafafa;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

@media (max-width: 1000px){
  .grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 600px){
  .grid{ grid-template-columns:1fr; }
}

.grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
  transition:.4s;
}

.grid img:hover{
  transform:scale(1.03);
  opacity:.85;
}

/* ABOUT */
#about{
  padding:180px 10%;
  background:#fafafa;
}

.about-title{
  text-align:center;
  font-family:'Playfair Display', serif;
  letter-spacing:4px;
  margin-bottom:90px;
  margin-left:40px;
}

.about-container{
  display:flex;
  align-items:center;
  gap:120px;
  max-width:1200px;
  margin:0 auto;
}

.about-image img{
  width:640px;
  height:480px;
  object-fit:cover;
  border-radius:6px;
}

.about-text{
  flex:1;
  text-align:left;
}

.about-text p{
  line-height:1.8;
  margin-bottom:20px;
  color:#444;
}

/* CONTACT */
form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.form-status{
  margin-top:20px;
  font-size:14px;
  letter-spacing:1px;
  color:var(--masmavi);
}

input, textarea{
  padding:14px;
  border:1px solid #ddd;
  font-family:'Pretendard', sans-serif;
}

button{
  padding:14px;
  border:none;
  background:var(--masmavi);
  color:white;
  letter-spacing:2px;
  cursor:pointer;
  font-family:'Pretendard', sans-serif;
}

button:hover{
  opacity:.85;
}

/* FOOTER */
.footer{
  padding:50px 10%;
  border-top:1px solid #eee;
  font-size:13px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-links{
  display:flex;
  gap:25px;
}

.footer a{
  color:var(--masmavi);
  text-decoration:none;
}

.footer a:hover{
  text-decoration:underline;
}


/* =========================
   📱 MOBILE OPTIMIERUNG
========================= */

/* Tablet */
@media (max-width: 1024px){

  .nav{
    gap:60px;
  }

  .hero-overlay h1{
    font-size:90px;
  }

  .about-container{
    gap:60px;
  }

  .about-image img{
    width:420px;
    height:auto;
  }
}

/* Smartphone */
@media (max-width: 768px){

  /* HEADER */
  .top-header{
    padding:30px 20px;
  }

  .brand{
    margin-bottom:30px;
  }

  .logo{
    font-size:26px;
    letter-spacing:4px;
  }

.nav{
  flex-direction:column;
  gap:22px;
}

.nav a{
  font-size:15px;
  letter-spacing:2px;
}

  /* HERO */
  .hero-parallax{
    height:70vh;
    background-attachment:scroll; /* Parallax deaktivieren auf Mobile */
    justify-content:center;
    padding-right:0;
  }

  .hero-overlay{
    text-align:center;
    margin:0;
  }

  .hero-overlay h1{
    font-size:56px;
    letter-spacing:2px;
  }

  .hero-overlay p{
    font-size:16px;
  }

  /* SECTIONS */
  .section{
    padding:70px 8%;
  }

  /* GRID */
  .grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  /* ABOUT */
  #about{
    padding:100px 8%;
  }

  .about-title{
    margin-left:0;
    margin-bottom:50px;
  }

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

  .about-image img{
    width:100%;
    max-width:420px;
    height:auto;
  }

  .about-text{
    text-align:left;
  }

  /* CONTACT */
  form{
    max-width:100%;
  }

  input, textarea{
    font-size:16px;
  }

  /* FOOTER */
  .footer-inner{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }
}

/* Kleine Smartphones */
@media (max-width: 480px){

  .hero-overlay h1{
    font-size:42px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:60px 6%;
  }
}
