@media (min-width: 480px) {
  .logo-unter {
		display: none
	}
}

@media (max-width: 480px) {
  .logo-neben {
		display: none
	}
}

:root {
  --grad-start: #ff006e;
  --grad-end: #ffbe0b;
  --btn-radius: 50px;
}

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

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Arial Black', sans-serif;
}

.hero {
  position: relative;
  height: 100%;
  width: 100%;
  background: url("images/party-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.content {
  position: relative;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  text-align: center;
  color: white;
}

.logo-neben {
  margin-top: 10%;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.logo-unter {
  margin-top: 10%;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  margin-top: 7rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: var(--btn-radius);
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--insta {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #111;
}

.btn--site {
  background: white;
  color: #111;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}


.event-info {
  margin-top: 0rem;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.foot {
    position:absolute;
   bottom:0;
   width:100%;
   height:60px;   /* Height of the footer */
}