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

/* BASIS */
body {
  font-family: Arial, sans-serif;
  background: #000000;
  color: #c9a35b;
}

/* HEADER – IDENT ZU INDEX */
header {
  height: 70px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 80px;
  width: auto;
}

.brand-text {
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* BURGER */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 2px;
  background: #c9a35b;
}

/* MENU */
#menu {
  position: absolute;
  top: 70px;
  right: 20px;
  background: #000000;
  border: 1px solid #c9a35b;
  display: none;
  flex-direction: column;
  min-width: 220px;
  z-index: 100;
}

#menu.active {
  display: flex;
}

#menu a {
  padding: 15px;
  color: #c9a35b;
  text-decoration: none;
  text-align: center;
}

#menu a:hover {
  background: #c9a35b;
  color: #000000;
}

/* STUDIO CONTENT */
.studio {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.studio h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.studio .intro {
  font-size: 18px;
  margin-bottom: 40px;
}

/* GALERIE */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

/* STANDORT */
.location h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.location p {
  margin-bottom: 20px;
}

.location iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    height: 65px;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-text {
    font-size: 16px;
  }

  .studio h1 {
    font-size: 32px;
  }

  #menu {
    right: 10px;
    width: calc(100% - 20px);
  }
}

/* FOOTER */
.footer {
  border-top: 1px solid #c9a35b;
  padding: 20px;
  background-color: #000000;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 14px;
}

.footer-brand {
  letter-spacing: 1px;
}

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

.footer-links a {
  color: #c9a35b;
  text-decoration: none;
}

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

/* MOBILE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}