/* style.css — formatiert, Header weiß gelassen, und party-Hintergrundbild sichtbar gemacht */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #090a0e;
  color: #f0ece4;
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header soll weiß bleiben, weil das Logo einen weißen Hintergrund hat. */
header {
  height: 88px;
  position: absolute;
  z-index: 30; /* über dem Hero-Bild */
  inset: 0 0 auto;
  /* dauerhaft weiß, leicht durchsichtig damit es harmonisch mit dem Hintergrund verschmilzt */
  background: rgba(255,255,255,0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  box-shadow: 0 2px 18px #0002;
}

.logo img,
footer img {
  display: block;
  width: 156px;
  height: 74px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 30px;
  color: #16130f;
  font: 10px 'DM Mono', monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}

button {
  display: none;
}

.hero {
  height: 900px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.photo,
.shadow img,
.footer img {
  position: absolute;
  inset: 0;
}

.photo {
  /* radial gradients on top, then the image */
  background-image:
    radial-gradient(circle at 74% 70%, #8a416d, transparent 18%),
    radial-gradient(circle at 80% 30%, #27468b, transparent 22%),
    linear-gradient(125deg, #1c1825, #08090d 62%),
    url("./assets/party.jpeg"); /* robuster relativer Pfad */
  /* fallback in case the image path is wrong */
  background-color: #d5b26e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  /* Sichtbar hinter dem Content, leicht unscharf und skaliert, damit es schön weich wirkt */
  z-index: 1;
  filter: blur(5px);
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  will-change: transform, filter;
  transition: filter .3s ease, transform .3s ease;
}

/* Farb-Overlay / Tönung über dem Bild, damit es mit dem Farbschema verschmilzt */
.photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(138,65,109,0.18), rgba(39,70,139,0.14));
  pointer-events: none;
  z-index: 2; /* über dem Bild, unter Text */
}

/* extra shadow overlay (if used) */
.shadow {
  background: linear-gradient(0deg, #090a0e, #090a0e 32%);
  z-index: 3;
}

.heroText {
  position: absolute;
  z-index: 40; /* über allem */
  top: 29%;
  left: 12%;
  max-width: 600px;
}

.heroText small,
section > small,
.card small {
  color: #d5b26e;
  font: 10px 'DM Mono', monospace;
  letter-spacing: .18em;
}

.heroText h1, .heroText h2 {
  font: 600 clamp(60px, 8vw, 125px)/.9 'Playfair Display', serif;
  letter-spacing: -.075em;
  margin: 20px 0;
}

.heroText em, h2 em {
  color: #d5b26e;
}

.heroText p {
  max-width: 420px;
  line-height: 1.7;
  color: #d0ccc4;
}

.ctas {
  display: inline-flex;
  gap: 18px;
  padding: 16px 19px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 800;
}

.meta {
  position: absolute;
  bottom: 31px;
  left: 7%;
  right: 7%;
  padding-top: 13px;
  border-top: 1px solid #fff6;
  display: flex;
  justify-content: space-between;
  font: 10px 'DM Mono', monospace;
}

.intro, .contact {
  padding: 150px 12%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
}

.intro h2, .pricing h2, .contact h2 {
  font-size: clamp(48px, 6vw, 88px);
}

.intro p {
  align-self: end;
  font: 24px/1.48 'Playfair Display', serif;
  color: #c9c5bb;
}

.statement {
  height: 430px;
  background: #d5b26e;
  color: #1a1209;
  display: grid;
  place-items: center;
  text-align: center;
  font: 600 clamp(55px, 10vw, 148px)/.85 'Playfair Display', serif;
}

.features {
  padding: 95px 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.features article {
  border-top: 1px solid #d5b26e;
  padding: 18px 25px 10px 0;
  margin-right: 25px;
}

.features b {
  font: 10px 'DM Mono', monospace;
  color: #d5b26e;
}

.features h3, .plans h3 {
  font: 600 29px/1.07 'Playfair Display', serif;
  margin: 35px 0 15px;
}

.features p, .plans p, .plans li {
  font-size: 13px;
  line-height: 1.65;
  color: #aaa;
}

.pricing {
  padding: 140px 7%;
  background: #121218;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.plans article {
  border: 1px solid #fff3;
  padding: 30px;
  min-height: 395px;
  display: flex;
  flex-direction: column;
}

.plans small {
  font: 10px 'DM Mono', monospace;
  color: #d5b26e;
}

.plans h3 {
  font-size: 35px;
  margin: 20px 0;
}

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

.mapCopy {
  padding: 90px max(24px, 12vw);
  align-self: center;
}

.mapCopy h2 {
  font-size: 54px;
}

.map iframe{
  width: 100%;
  min-height: 470px;
  border: 0;
}

.card {
  padding: 38px;
  background: #17171d;
}

.card p {
  line-height: 1.65;
  color: #c3bfb6;
}

.phone {
  display: block;
  color: #d5b26e;
  font: 600 clamp(28px, 3vw, 42px) 'Playfair Display', serif;
  margin: 28px 0;
}

footer {
  padding: 26px 7%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #554f48;
  font: 10px 'DM Mono', monospace;
}

footer img{
  width: 125px;
  height: 59px;
}

@media (max-width: 720px) {
  header { height: 72px; }
  .heroText h1 { font-size: 58px; }
  .features, .plans { grid-template-columns: 1fr; }
  .map { grid-template-columns: 1fr; }
}
