@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@800&display=swap');


:root {
  --yellow: rgb(243, 240, 63);
  --ltgray: rgb(217, 217, 218);
  --red: rgb(236, 4, 4);
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding:0;
}

.logo {
  height: 60px;
  padding-left: 20px;
}

.ttlff {
  padding-top: 20px;
  width: 100%;
}


/* animated xs */
.toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  /* border: 3px solid white; */
  margin-right: 20px;
}

.toggle__burger{
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

.toggle__burger::before,
.toggle__burger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}
  
.toggle__burger::before {
  transform: translateY(-10px);
}
  
.toggle__burger::after {
  transform: translateY(10px);
}
  
/* ANIMATION */
.toggle.active .toggle__burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

.toggle.active .toggle__burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}

.toggle.active .toggle__burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}
  
.topnav {
  overflow: hidden;
  background-color: white;
  width: 100%;
}
    
.navbar {
  height: 80px;
  align-items: center;
  background-color: black;
  padding: 10px 0;
}

.top-navbar {
  overflow: hidden;
  display: flex;
  justify-content:space-between;
  align-items: center;
  width: 100%;
}
      
.navbar-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
    
.navbar-list.active {
  display: flex;
  background-color: black;
  z-index: 100;
}
    
.navbar-list a {
  color: white;
  background-color: black;
  display: flex;
  justify-content: center;
  width: 100%;
  text-transform: uppercase;
  padding: 2px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  z-index: 10;
  transition: 0.8sec ease-in-out;
}
      
.navbar-list  a:hover {
  color: var(--red);
}

.top-logo {
  background-color: rgb(15, 15, 15);
}

main {
  font-size: 2rem;
  position: relative;
}

.centerish {
  margin: 2rem auto;
  display: flex;
}

.column {
  flex-direction: column;
}

.col-one {
  flex-direction: column;
}

.col-two {
  flex-direction: column-reverse;
}

.sec-sec, .sec-fourth, .sec-sixth {
  background-color: var(--yellow);
}

.sec-third, .sec-fifth {
  background-color: var(--ltgray);
}

.sec-sec, .sec-third, .sec-fourth, .sec-fifth, .sec-sixth {
  position: relative;
  display: flex;
  padding: 0.5rem 0;
}

.article {
  flex-direction: row;
  padding: 0 20px;
  text-align: justify;
} 

.article h1, .earlybird {
  text-align: left;
}

.sec-sec h1, .sec-third h1, .sec-fourth h1, .sec-fifth h1, .sec-sixth h1 {
  font-size: 2rem;
  line-height: 2.6rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.sec-sec p, .sec-third p, .sec-fourth p, .sec-fifth p, .sec-sixth p {
  font-size: 1.15rem;
  padding-bottom: 25px;
}

.imgs {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

#background-video {
  width: 100%;
}

.earlybird {
  color: var(--red);
  font-size: 1.5rem;
}

/* Purchashing tickets */

.eventbrite {
  height: 78px;
  transition: filter 0.5s ease;
  border-radius: 14px;
  box-shadow: 5px 5px 2px 1px rgba(219, 78, 48, .5);
}

.eventbrite:hover {
  filter: brightness(90%);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 2px 1px rgba(219, 78, 48, .5);
  cursor: pointer;
}

/*gallery code*/

.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 5px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.sage {
  text-decoration: none;
  color: rgb(5, 68, 5);
  font-weight: 700;
  cursor: pointer;
}

.sage:hover {
  color: green;
}

.free {
  height: 80px;
  align-self:flex-start;
  border-radius: 10px;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.8sec ease-in-out;
}
   
.free:hover {
  filter: brightness(0.85);
}

.contact {
  padding-top: 1.5rem;
}
.tix-sale {
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.footer {
  font-size: 1.2rem;
}

.ftr-text {
  padding: 10px;
  font-size: 0.8rem;
}

.social {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: end;
}

.social-icon { 
  width: auto;
  max-width: 60px;
  height: auto;
  max-height: 60px;
  padding: 10px;
}

i {
  color: rgb(22, 20, 20);
  width: 50px;
}

i:hover {
  color: var(--red);
}

/* Countdown */
.sec-countdown {
  color: var(--red);
  font-size: 1.45rem;
}

.countdown{
  display: flex;
  padding-top: 30px;
}

.countdown h4 {
  padding-right: 8px;
}

#hours, #minutes, #seconds {
  display: none;    
}


/* following code is for the button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgba(236, 4, 4, 0.3);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: var(--red);
}

.stub {
  position: absolute;
  width: 20%;
  top: 100px;
  right: 8px; /* Move the image to the top right corner */
  transform: rotate(20deg);
}

.stub:hover {
  cursor: pointer;
  filter: brightness(0.85);
}


@media (min-width:900px){
  .toggle {
    display: none;
  }

  .ttlff {
    display: flex;
    padding-top: 0;
    width: 80%;
    margin: 0 auto;
  }
      
  .container {
    flex-direction: row;
    margin: 0 auto;
    width: 80%;
  }
            
  .navbar {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
  }
      
  .navbar-list {
    display: flex;
    flex-direction: row;
    text-align: center;
    padding-right: 50px;
  }
            
  .centerish {
    flex-direction: row;
    width: 70%;
    margin: 2.5rem auto;
  }
    
  .navbar-list a {
    text-transform: uppercase;
    padding: 0 20px;
    font-size: 1.5rem;
  }  

  .article {
    flex-direction: row;
  }

  .container,
  .topnav,
  .ftr-text {
    margin: 0 auto;
    width: 70%;
  }
      
  .topnav {
    overflow: hidden;
    text-align: center;
  }

  .sec-sec, .sec-third, .sec-fourth, .sec-fifth, .sec-sixth {
    padding: 4rem 0;
  }

  .sec-sec h1, .sec-third h1, .sec-fourth h1, .sec-fifth h1, .sec-sixth h1 {
    font-size: 2.4rem;
    line-height: 2.6rem;
    padding-bottom: 1rem;
  }
    
  .sec-sec p, .sec-third p, .sec-fourth p, .sec-fifth p, .sec-sixth p {
    font-size: 1.4rem;
  }

  .sec-sec p, .sec-fourth p, .sec-sixth p {
    padding-right: 2.5rem;
  }

  .sec-third h1, .sec-third p, .sec-fifth h1, .sec-fifth p, .earlybird, .free {
    padding-left: 2.5rem;
  }

  .earlybird {
    width: 85%;
    font-size: 2rem;
  }

  .imgs {
    width: 50%;
    height:fit-content;
  }

  #background-video {
    width: 55%;
  }

  .img-long {
    width: 500px;
    justify-content: flex-start;
    margin-left: 100px;
  }
    
  .ftr-text {
    padding: 50px 0;
    font-size: 1rem;
  }

  .tix-sale {
    font-size: 1.5rem;
  }

  .free {
    height: 110px;
  }

  .gallery {
    height: 450px;
  }

  iframe {
    width: 100%;
    padding-left: 7%;
  }

  .last-sec {
    display: flex;
    justify-content: space-between;
  }

  .sec-countdown { 
    font-size: 2.5rem;
  }

  .stub {
    width: 15%;
    top: 200px;
    right: 85px; /* Move the image to the top right corner */
    transform: rotate(30deg);
  }
}

