@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

@font-face {
    font-family: 'TMR';
    src: url('../assets/Thertole-PersonalUse.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
  --bg: #151515;
  --red: #df0003;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0px;
  background-color: var(--bg);
}
.en-fr{
  position: fixed;
  right: 10;
  top:10;
}
.topnav {
  overflow: hidden;
  background-color: var(--bg);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid var(--red);
  align-items: center;
}
.nav-container {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: "TMR", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  transition: color 250ms ease-out;
}
.topnav a:last-child{
  font-size: 10px;
  padding-top: 19px;
}

.topnav a:hover {
  color: var(--red);
}
.topnav .active {
  color: var(--red);
}
.topnav .icon {
  display: none;
}

p {
  color: white;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: lighter;
  font-size: 15pt;
}
.fa-bars{
  font-size: 20px;
}
.subtitle {
  font-family: "TMR", sans-serif;
  font-size: 20pt;
}
section {
  margin-top: 10px;
}
.band {
  display: block;
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.typo {
  display: block;
  position: relative;
  margin-top: -300px;
  margin-left: -10px;
}
#content {
  width: 50%;
  position: relative;
  margin-left: 25%;
}
#about {
  padding-top: 50px;
}
.desc {
  text-align: justify;
}
#merch,
#agenda,
#releases,
#photos,
#contact {
  margin-top: 150px;
}
section p {
  text-align: center;
}
#about img {
  margin: auto;
  display: block;
}
.mobile{
  display: none;
}
.release-tab {
  display: flex;
  flex-direction: column;
}
.release-line {
  display: flex;

  flex-direction: column;
}
.release-item {
  flex: 1;
  height: 100px;
  justify-content: center;
}
.release-item iframe {
  height: 100px;
}


#agenda {
  background-image: url("../assets/crowd.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(21, 21, 21, 0.6);
  background-blend-mode: overlay;
  min-height: 500px;
}
#merch::before,
#agenda::before,
#releases::before,
#photos::before,
#contact::before {
  content: "";
  display: block;
  height: 75px;
  margin-top: -75px;
  visibility: hidden;
}
#past-shows {
  padding-top: 50px;
  padding-bottom: 20px;
}
.agenda-line {
  display: flex;
  flex: 0 0 100%;
}
.agenda-left {
  flex: 1;
  text-align: left;
}
.agenda-left p {
  text-align: right;
  padding-right: 5px;
}
.agenda-right {
  border-left: 1px solid var(--red);
  flex: 1;
}
.agenda-right p {
  text-align: left;
  padding-left: 5px;
}
.agenda-right span {
  font-size: 12pt;
}
.mosaic {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #ddd;
  flex-grow: 1;
    object-fit: contain;
    max-height: 500px;
}

.small {
  flex-basis: 250px;
/*  height: 180px;*/
  object-fit: contain;
}

.medium {
  flex-basis: 400px;
/*  height: 250px;*/
}

.large {
  flex-basis: 550px;
/*  height: 350px;*/
}

.tall {
  flex-basis: 300px;
/*  height: 500px;*/
}

.wide {
  flex-basis: 700px;
/*  height: 220px;*/
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

#contact img {
  display: block;
  max-width: 500px;
  margin: auto auto 100px;
}
#contact {
  border-bottom: 1px solid var(--red);
}

#contact a {
  color: white;
  text-decoration: none;
}

#contact .mail:hover {
  color: var(--red);
}

#contact .fa {
  padding-left: 15px;
  padding-right: 15px;
  transition: transform .5s;
}
#contact .fa:hover{
    transform: scale(1.2);
}

.ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}
.facebook {
  color: #0866ff;
}
.spotify {
  color: #1ed760;
}
.apple {
  color: #c2c2c2;
}
.whatsapp {
  color: #25D366;
}
.youtube {
  color: #ff0033;
}
.social-links{
  display:flex;
  justify-content: space-around;
  flex-direction: column;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;

}

.social-links a{
  margin: 10px;
  transition: transform .5s;
}
.social-links a:hover{
  transform: scale(1.2);
}

footer {
  text-align: center;
}
footer p {
  font-size: 10pt;
}
footer a {
  text-decoration: none;
  color: white;
}
footer a:hover {
  color: var(--red);
}

@media screen and (max-width: 768px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
  }
  .topnav a.icon {
    float: right;
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
  }
  .topnav {
    border-bottom: 2px solid var(--red);
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 50px;
  }
  .nav-container a{
    display: none;
  }

  .band {
    width: 100%;
    height: 600px;
  }
  .blur{
    filter: blur(0px);
  }
  .typo {
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-top: -200px;

  }
  #content {
    width: 100%;
    margin-left: 0%;

  }
  section {
    width: 90%;
    margin-left: 5%;
  }
  .subtitle {
    padding-bottom: 30px;
  }
  .desktop{
    display: none;
  }
  .mobile{
    display: inline;
  }
  #merch,
  #agenda,
  #releases,
  #photos,
  #contact {
    margin-top: 100px;
  }
  #merch {
    margin-bottom: 200px;
  }
  #about img {
    width: 90%;
    height: auto;
  }

  #agenda,
  #photos {
    width: 100%;
    margin-left: 0;
  }
  .agenda-line {
    margin-bottom: 20px;
  }
  .agenda-left {
    flex: 4;
  }
  .agenda-right {
    flex: 6;
  }
  #contact img {
    width: 90%;
    height: auto;
  }
  #contact {
    padding-bottom: 20px;
  }
  footer {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .social-links{
    z-index: 9999;
    position: fixed;
    bottom:10px;
    right:10px;

    border-radius:10px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

  }
  .social-links .facebook{
    padding-left: 3px;
  }

}
