html {
  margin: 0;
  padding: 0;
  background: url(images/drums.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;  
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 330px;  
  overflow: scroll;
}
.clearfix {
  clear: both;
  display: block;
  width: 100%;
}
nav {
  width: 100%;
  height: 60px;
  margin: 0;
  background-color: rgba(255, 255, 255, 1);
}
nav .brand {
  display: block;
  float: left;
  margin: 5px 20px auto 10px;
}
nav .brand img {
  width: 50px;
  float: left;
}
nav .brand  p {
  display: none;
  font-weight: 600;
  font-size: 20px;
  margin: 8px auto auto 10px;
  color:#333;
}
nav .burger {
  display: none;
  float: right;
  width: 40px;
  height: 48px;
  margin: 7px 6px;
  cursor: pointer;
}
nav .burger span {
  display: block;
  width: 80%;
  height: 2px;
  margin: 10px auto 10px auto;
  padding: 0;
  background-color: #aaa;  
  border-radius: 10px; 
}
nav ul {
  margin: 0;
  padding: 15px;
  list-style-type: none;
}
nav ul li {
  display: inline-block;
  margin-right: 20px;
}
nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  line-height: 25px;
}
nav ul li.active {
  border-bottom: 2px solid #333;
}

.social {
  width: 50%;
  margin-left: 20px;
  padding: 20px;
  padding-bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  float: left;
}
.social p {
  font-size: 20px;
}
.social .wrapper {
  display: flex;
  justify-content: space-evenly;
}
.social a {
  height: 100px;  
  background-repeat: no-repeat;
  background-size: 100px;
  display: block;
  margin-right: 50px;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
}
.social a.facebook {
  width: 100px;
  background-image: url('images/facebook.png');
}
.social a.instagram {
  width: 100px;
  background-image: url('images/instagram.png');
}
.social a.youtube {
  width: 180px;
  background-image: url('images/youtube.png');
  background-size: 100%;
  background-position: center;
}
.banner {
  height: 100vh;
}
.baseline {  
  color: #fff;
  display: inline-block;
  padding-left: 20px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
  margin-top: 5vh;
}
.baseline h1 {  
  color: #fff;
  height: 100px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
  font-size: 6vw;
  margin: 0;
  padding: 0;
  padding-top: 25px;
  line-height: 4vw;
  text-indent: 120px;
  background-image: url('images/groovestation.png');
  background-repeat: no-repeat;
  background-size: 100px;
}
.baseline h2 {  
  font-size: 2.5vw;
  padding-left: 10px;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.form {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 30vw;
  max-width: 480px;
  margin: 0vh 20px 0 auto;
  float: right;
  height: auto;
  text-align: left;
  padding: 20px;
  border-radius: 2px;
  font-weight: 200;
}
.form p {
  font-size: 20px;
  font-weight: 0;
}
.form .inner {
  width: 100%;
  text-align: left;
}
input, textarea {
  border: 0;
  width: 99%;
  border-radius: 2px;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}
.form input {
  height: 40px;
  line-height: 24px;
}
.form textarea {
  height: 100px;
  resize: vertical;  
}
.form #cto {
  margin: 0;
  padding: 10px;
  background-color: red;
  text-align: center;
  height: 48px;
  border-radius: 2px;
  color: #fff;
  font-size: 20px;
  text-decoration: none !important;
  cursor: pointer;
}
.page {
  width: 100%;
  clear: both;
  background-color: #fff;
  text-align: center;
  padding-top: 100px;
}
.page .inner {
  width: 70%;
  max-width: 1024px;
  text-align: left;
  margin: auto;
  padding-bottom: 100px;
}
.page ul {
  text-align: left;
}
.page .gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap:wrap; 
  justify-content: space-between;
}
.gallery img {
  width: 30%;
  margin-bottom: 3vw;
  padding-left: 0;
}
.content {
  background-color: #fff;
  margin: -20px auto 100px auto;
  max-width: 1024px;
  min-height: 80vh;
  text-align: left;
}
.content.video {
  text-align: center;
}
.content iframe {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 16 / 9;
}
.date {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 120px; /* a bit tighter than 200px */
}
.date h2 {
  flex: 0 0 100%;
  margin: 0 0 8px 0;
  font-size: clamp(26px, 4vw, 40px);
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
}
.desc b {
  font-size: 24px;
}
.desc,
.gmap {
  float: none;
  width: auto;
  flex: 1 1 420px;
}

/* Make embedded map responsive */
.gmap iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border: 0;
}

/* Mobile tweaks */
@media only screen and (max-width: 996px) {
  .social,
  .form {
    flex: 1 1 100%;
    margin: 10vh 3vw 0 3vw;
  }
  .date {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0 !important;
  }

  nav ul {
    gap: 0; /* dropped menu is vertical */
  }
}

/* Extra small spacing tuning */
@media only screen and (max-width: 480px) {
  .social,
  .form {
    margin: 6vh 3vw 0 3vw;
  }
}
footer {
  border: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  clear: both;
  text-align: center;
  margin: 0;
  padding: 20px 0;
}
footer p {
  margin: 0;
  color: #999;  
}
@media only screen and (max-width: 800px) {
  .baseline {
    padding: 0 !important;
    margin: auto;
  }
  .baseline h1 {
    color: transparent;
    text-shadow: none;
    height: 60vw;
    background-size: contain; 
    text-align: center;
    background-position: center;
    padding-top: 60vw;
    padding: 0;
    text-indent: 0px;
  }
}
@media only screen and (max-width: 996px) {
  nav .brand  p {
    display: inline-block;
  }
  nav .burger {
    display: block;
  } 
  nav ul {
    display: none;
  } 
  nav ul.dropped {
    display: block !important;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }  
  nav ul.dropped li {
    width: 100%;
    height: auto;
    padding: 0;
    border-bottom: 1px solid #999;
    float: none;
    clear: both;
  }
  nav ul.dropped li a {
    padding: 20px;
    width: 92%;
    display: block;
    margin: 0 !important;
    float: none;
  }
  nav ul.dropped li:last-child {
    border-bottom: none
  }
  .container {
    border: 0;
    background-color: #fff;
  }
  .content {
    padding: 0 20px;
    padding-top: 0; 
  }
  .page {
    padding-top: 20px;
  }  
  .content .date .desc , .content .date .gmap{
    float: none;
    width: 100%;
    margin-bottom: 20px;
    flex: 0 0 auto;
    height: auto;
    min-height: auto;
  }
  .social.linkedin {
    position: absolute;
  }
  .banner {
    text-align: center;
    height: auto;
  }
  .social {
    float: none;
    margin: 10vh 3vw 0 3vw;
    width: auto;
    max-width: none;
    margin-bottom: 60px;
    text-align: left;
  }
  .baseline {
    float: none;
    margin: 5vh auto 0 auto;
    padding-left: 20px;    
  }
  .baseline h1 {
    font-size: 80px;
    line-height: 90px;
    padding-top: 5px;
  }
  .baseline h2 {
    font-size: 14vw;
  }
  .form {
    float: none;
    margin: 10vh 3vw 0 3vw;
    width: auto;
    max-width: none;
    margin-bottom: 60px;
  }
  .page .inner {
    width: 86% !important;
    text-align: center;
    padding-bottom: 50px;
  }
  .page ul {
    padding-left: 14px;
  }
  .page .inner p {
    text-align: left;
  }
  .gallery img {
    width: 45%;
  }
  .gallery img:last-child {
    display: none;
  }
  footer {
    height: auto;
  }
  footer p {
    display: block;
    width: 90%;
  }
}
@media only screen and (max-width: 700px) {
  .social .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .social .wrapper a {
    margin-bottom: 50px;
    margin: 10px auto 20px auto;
  }
  .gallery img {
    width: 100%;
  }
  .body {
    scrollbar-width: none;
  }
  .body::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .baseline h2 {
    font-size: 14vw;
  }
  .social {
    float: none;
    padding-bottom: 0;
    text-align: center;
  }
  .social p {
    display: none;
  }
  .social a {
    text-align: center;
    font-size: clamp(16px, 5vw, 5vw);
  }
}
@media only screen and (max-width: 330px) {
  .baseline h1 {
    height: 200px !important 
  }
}

/* Content + Illustration layout */
.page .inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.page .inner > h3 {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}
.page .inner > .content {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  margin: 0;
  min-height: auto;
  font-size: 20px;

}
.content p {
  padding: 0 !important;
  margin: 0;
}
.page .inner > .illustration {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  margin: 0;
}
.page .inner > .illustration img,
.page .inner > .illustration video {
  display: block;
  width: 100%;
  height: auto;
}

.page .inner > .illustration iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/* Stack on smaller screens */
@media only screen and (max-width: 1023px) {
  .page .inner {
    flex-direction: column;
    gap: 20px;
  }
  .page .inner > .content,
  .page .inner > .illustration {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .page .inner.reverse > h3 {
    order: 0;
  }
  .page .inner.reverse > .illustration {
    order: 1;
  }
  .page .inner.reverse > .content {
    order: 2;
  }
}

/* Visual polish for sections under .page */
.page {
  background: linear-gradient(180deg, #fff 0%, #fff 60%, #fafafa 100%);
}

/* Headings */
.page .inner > h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: 0.2px;
  margin: 0 0 8px 0;
  color: #111;
  text-align: left;
}

/* Content card */
.page .inner > .content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.page .inner > .content p {
  line-height: 1.8;
  color: #333;
}

/* Illustration card */
.page .inner > .illustration {
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.page .inner > .illustration img,
.page .inner > .illustration video,
.page .inner > .illustration iframe {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
  will-change: transform;
}
.page .inner > .illustration:hover img,
.page .inner > .illustration:hover video,
.page .inner > .illustration:hover iframe {
  transform: scale(1.02);
}

/* Section divider rhythm */
.page .inner + .inner {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 60px;
}

/* Link styling inside page */
.page .inner a {
  color: #e53935;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 57, 53, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page .inner a:hover {
  color: #c62828;
  border-bottom-color: rgba(198, 40, 40, 0.55);
}

/* Responsive tweaks */
@media only screen and (max-width: 1023px) {
  .page .inner > .content {
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  }
  .page .inner > .illustration {
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
  }
  .page .inner + .inner {
    padding-top: 40px;
  }
}

/* Square corners for media in illustration blocks */
.page .inner > .illustration,
.page .inner > .illustration img,
.page .inner > .illustration video,
.page .inner > .illustration iframe {
  border-radius: 0;
}

/* Concerts: flex layout instead of floats */
