/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.daslogo {
  height: 250px;
  padding-bottom: 20px;
  margin-bottom: -20px;
  clip-path: inset(20px 0 40px 0);
}

h1 {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  font-style: bold;
}

h2 {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  color: #E6E6E6;
}

/* BASIS */
body {
  font-family: Arial, sans-serif;
  color: #E6E6E6;
  background: #1F3A52;
    background: 
    linear-gradient(rgba(20,40,60,0.85), rgba(20,40,60,0.85)),
    url("background.png");
     background-size: cover;      
  background-repeat: no-repeat; 
  background-position: center;   
  background-attachment: fixed; 
}

/* HEADER */
header {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  font-weight: 900;
  font-size: large;
  color: #E6E6E6;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.8);
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 1000;
}

.logo {
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: 
    linear-gradient(rgba(20,40,60,0.85), rgba(20,40,60,0.85)),
    url("fenster1.jpeg");
  background-size:cover;
  background-position: center;
background-repeat: no-repeat;
flex-direction: column;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero h1 {
  color: #F2C300;
  font-size: 2rem;
}

/* SECTIONS */
.section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.section h2 {
  margin-bottom: 20px;
  color: #F2C300;
}

.dark {
  background: #162C3E;
}

/* LISTE */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 10px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: none;
}

button {
  padding: 10px;
  background: #F2C300;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
}

footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

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

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.gallery {
  margin-top: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  height: 500px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);

  position: relative;
  z-index: 1;
}

/* Pfeile */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  z-index: 10; /* WICHTIG */

  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 30px;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

#gallery-image {
  transition: opacity 0.5s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
  display: inline-block; 
}

a:hover {
  transform: scale(1.05);
}

