@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:wght@300;400;500&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
	margin: 0;
    background: #000;
    color: #e8e8e8;
    font-family: 'Cormorant Garamond', serif;
}

/* HERO */

.hero {
    background: #000;
	text-align: center
}

.hero img {
	width: 100%;
	max-width: 2560px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* VIDEO */

.video-section {
	background: #000;
    max-width: 2560px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.video-section video {
	width: 98%;
	max-width: 2560px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* FESTIVAL-INFO */

.divider-top{
	width: 100%;
	max-width: 2560px;
	display: block;
	margin: 0 auto;
}


.quick-info {
  max-width: 1500px;
  margin: 40px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.quick-card {
  background: url("images/button-bg.webp") center / cover no-repeat;
  aspect-ratio: 16 / 9;
  text-decoration: none;
  color: #d8c9a5;
  font-family: 'Cinzel', serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  transition: 0.35s ease;
}

.quick-icon {
  width: 82px;
  height: auto;
  transition: 0.35s ease;
  filter: drop-shadow(0 0 4px rgba(216,201,165,.25));
}

.quick-card h3 {
  margin: 0;
  color: #d8c9a5;
  font-size: clamp(1rem, 1.4vw, 1.7rem);
  letter-spacing: 2px;
  text-align: center;
}

.quick-card p {
  margin: 0;
  color: #89B8FF;
  font-size: clamp(.85rem, 1vw, 1.1rem);
  letter-spacing: 2px;
}

.quick-card:hover {
  transform: translateY(-5px);
}

.quick-card:hover .quick-icon {
  filter:
    drop-shadow(0 0 8px rgba(216,201,165,.8))
    drop-shadow(0 0 18px rgba(137,184,255,.55));
  transform: scale(1.08);
}


@media (max-width: 800px) {
	
  .quick-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    padding: 0 12px;
	  margin-top: -25px;
  }

  .quick-card {
    aspect-ratio: 1 / 1.2;
    padding: 14px 8px;
  }

  .quick-icon {
    width: 46px;
  }

  .quick-card h3 {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .quick-card p {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
	text-align: center;
  }
}

.divider-bottom-section {
  max-width: 2560px;
  margin: 0 auto 40px;
  padding: 0;
  overflow: hidden;
}

.divider-bottom {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}


@media (max-width: 800px) {
	
	.divider-bottom-section {
	margin-top: -70px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
	}
}



/* Das Festival */

.festival {
    position: relative;
    max-width: 2560px;
    margin: 0 auto 50px;
	overflow: hidden;
}

@media (max-width: 600px) {
    .festival h2 {
       margin-top: -40px;
    }
}

.festival-bg {
    width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center top;
    display: block;
}


/* LINEUP */

#lineup {
    overflow: hidden;
	text-align: center;
	padding-bottom: 0;
	margin-bottom: 0;

}

.lineup-title {
    width: 2560px;
	height: auto;
	display: block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 1200px) {
.lineup-title {
    width: 1150px;
    }
}


.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px;
}

.band-card {
  text-decoration: none;
  text-align: center;
  color: #d8c9a5;
  font-family: 'Cinzel', serif;
  letter-spacing: 3px;
}

.band-logo-box {
  aspect-ratio: 16 / 10;
  background: radial-gradient(circle, #0b2a44 0%, #020508 75%);
  border: 1px solid rgba(216, 201, 165, 0.7);
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(137, 184, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  margin-bottom: 18px;
  transition: 0.3s ease;
  overflow: hidden;
}

.band-logo-box img {
  max-width: 140%;
  max-height: 140%;
  object-fit: contain;
display:block;
}

.band-card:hover .band-logo-box {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(137, 184, 255, 0.65);
  border-color: #89b8ff;
}

.band-card span {
  font-size: clamp(1rem, 1.4vw, 1.6rem);
}


@media (max-width: 900px) {
	
  .band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
	
	
	.band-logo-box img {
  max-width: 140%;
  max-height: 140%;
  object-fit: contain;
	display:block; 
	}
}

@media (max-width: 500px) {

  .band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
	padding: 100px 30px;
  }
	

.band-logo-box img {
  width: 140%;
  height: 140%;
  max-width: none;
  max-height: none;
  object-fit: contain;
	}
}



/* TICKETS */

#tickets {
    overflow: hidden;
	text-align: center;
	padding-bottom: 0;
	margin-bottom: 0;

}

.tickets-title {
    width: 2560px;
	height: auto;
	display: block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 1200px) {
.tickets-title {
    width: 1150px;
    }
}


.tickets-section {
  max-width: 2560px;
  margin: 70px auto 90px;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.tickets-bg {
  background: url("images/tickets/tickets-bg.webp") center top / cover no-repeat;
  padding: 40px 40px 70px;
}

.tickets-bg h2 {
  font-family: 'Cinzel', serif;
  color: #89B8FF;
  font-size: clamp(1.8rem, 3vw, 4rem);
  letter-spacing: 5px;
  margin: 0 0 25px;
}

.tickets-intro {
  font-family: 'Cormorant Garamond', serif;
  color: #EFE3BF;
  font-size: clamp(1.1rem, 1.6vw, 2rem);
  margin: 0 auto 45px;
}

.ticket-cards {
  max-width: 1650px;
  margin: 0 auto 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.ticket-card {
  display: block;
  transition: 0.35s ease;
}

.ticket-card img {
  width: 100%;
  display: block;
}

.ticket-card:hover {
  transform: translateY(-6px);
  filter:
    drop-shadow(0 0 10px rgba(137,184,255,.35))
    drop-shadow(0 0 22px rgba(137,184,255,.22));
}

.tickets-note {

    margin: 20px auto 45px;
    text-align: center;
    max-width: 900px;
}

.tickets-note p {

    margin: 8px 0;
    font-family: 'Cormorant Garamond', serif;
    color: #d8c9a5;
    font-size: clamp(1rem, 1.3vw, 1.4rem);
}

.tickets-note a {
    color: #89b8ff;
    text-decoration: none;
    transition: 0.3s;
}

.tickets-note a:hover {
    color: #c7e3ff;
}


.tickets-bottom {
  width: 100%;
  max-width: 2100px;
  display: block;
  margin: 0 auto;
}


@media (max-width: 800px) {

  .tickets-section {
    margin: 40px auto 70px;
  }

  .tickets-bg {
    padding: 25px 16px 45px;
  }

  .ticket-cards {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 35px;
  }

  .tickets-bg h2 {
    letter-spacing: 3px;
  }

  .tickets-intro {
    margin-bottom: 28px;
  }
}


.ticket-prices {
  margin: 20px auto 25px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: #EFE3BF;
}

.ticket-prices h3 {
  font-family: 'Cinzel', serif;
  color: #89B8FF;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.ticket-prices p {
  margin: 5px 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.ticket-prices strong {
  color: #d8c9a5;
}



/* INFOCARDS */

.info-cards-section {
	max-width: 2560px;
	margin: 0px auto 50px;
overflow: hidden;	
}

.info-cards-img {
	display: block;
	width: 100%;
    min-width: 550px;
	max-width: 2560px;
    height: auto;
	position: relative;

    left: 50%;

    transform: translateX(-50%);
}

@media (max-width: 550px) {
	.info-cards-section{
		margin-top: -100px;
	}
    }



/* FOOTER*/

.footer-banner {
    max-width: 2560px;
    margin: 0 auto;
}

.footer-banner a {
    display: block;
}

.footer-img {
    width: 100%;
    display: block;
    transition: .35s ease;
}

.footer-banner:hover .footer-img {
    filter:
        brightness(1.05)
        drop-shadow(0 0 8px rgba(137,184,255,.25))
        drop-shadow(0 0 18px rgba(137,184,255,.18));
    transform: translateY(-2px);
}


.section-content {
    position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
    text-align: center;
}


.section-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 4rem);
    color: #89b8ff;
    letter-spacing: 4px;
    margin-bottom: 25px;
}


/* LEGAKFOOTER */

.legal-footer{
    text-align:center;
    padding:20px 0 35px;
    color:#d8c9a5;
    font-family:'Cormorant Garamond', serif;
    font-size:0.95rem;
}

.legal-footer nav{
    margin-top:8px;
}

.legal-footer a{
    color:#d8c9a5;
    text-decoration:none;
    transition:.3s;
}

.legal-footer a:hover{
    color:#89b8ff;
}

.legal-footer span{
    margin:0 12px;
    opacity:.6;
}


/* IMPRESSUM */

.legal-content{
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content h2{
    font-family:'Cinzel', serif;
    color:#89b8ff;
    font-size:clamp(2rem,3vw,4rem);
    letter-spacing:4px;
    text-align:center;
    margin-bottom:60px;
}

.legal-content h3{
    font-family:'Cinzel', serif;
    color:#d8c9a5;
    font-size:1.5rem;
    margin-top:40px;
    margin-bottom:15px;
}

.legal-content p{
    font-family:'Cormorant Garamond', serif;
    color:#efe3bf;
    font-size:1.2rem;
    line-height:1.8;
}

.legal-content a{
    color:#89b8ff;
    text-decoration:none;
}

.legal-content a:hover{
    color:#c7e3ff;
}








/* SECTION */


.section-content p {
    max-width: 1200px;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.8rem, 1.4vw, 2.5rem);
    color: #d8c9a5;
    line-height: 1.45;
    letter-spacing: 1px;
    text-align: center;
    text-transform: none;
}



/* SECTIONS */



section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #89b8ff;
}



/* BURGER MENU */

.menu-toggle{
    position:fixed;
    top:25px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(8,15,25,.88);
    color:#d8c9a5;
    font-size:1.8rem;
    cursor:pointer;
    z-index:9999;
    transition:.3s;
    box-shadow:0 0 12px rgba(137,184,255,.25);
}

.menu-toggle:hover{
    color:#89b8ff;
    box-shadow:0 0 20px rgba(137,184,255,.5);
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-280px;
    width:280px;
    height:100%;
    background:rgba(5,10,18,.97);
    backdrop-filter:blur(10px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:28px;
    padding:40px;
    transition:.35s ease;
    z-index:9998;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    color:#d8c9a5;
    text-decoration:none;
    font-family:'Cinzel', serif;
    font-size:1.4rem;
    letter-spacing:2px;
    transition:.3s;
}

.mobile-menu a:hover{
    color:#89b8ff;
}
