/* ===== FONTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800&display=swap");

@font-face {
  font-family: "Migha";
  src: url("Migha-BoldSemExpCNTRSlant.woff2") format("woff2"),
       url("Migha-BoldSemExpCNTRSlant.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  color: #000000;
  font-size: 18px;
  background-color: #fbefe2;
  line-height: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

img {
  margin: 0 auto;
  max-width: 100%;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.container-promo > div {
  text-align: center;
}

.container-promo p {
  margin: 0;
}

@media (max-width: 768px) {
  .container-promo {
    grid-template-columns: 1fr;
  }
}

/* ===== TYPOGRAPHY ===== */
h1,
h2 {
  line-height: 1em;
  text-align: center;
  font-weight: 800;
  color: #ee3437;
  font-size: 4rem;
}

h3 {
  line-height: 1em;
  text-align: center;
  font-weight: 800;
  color: #ee3437;
  font-size: 3rem;
}

@media (max-width: 800px) {
  h1,
  h2,
  h3 {
    font-size: 2rem;
  }
}

/* ===== NAVIGATION ===== */
#navigation {
  text-align: center;
  background: #ee3437;
  color: #fbefe2;
}

#navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#navigation ul li {
  margin: 0.5rem;
  display: inline-block;
}

#navigation ul li a {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#navigation ul li a:hover {
  color: #f8e102;
}

@media (max-width: 800px) {
  #navigation ul li {
    margin: 0.3rem;
  }
  
  #navigation ul li a {
    font-size: 0.8rem;
  }
}

/* ===== SECTIONS ===== */
#tour {
  text-align: left;
  padding: 4rem 0 8rem 0;
}

#join {
  text-align: center;
}

#promo {
  text-align: center;
  display: grid;
  place-items: center;
  margin: 3rem 0;
}

@media (max-width: 800px) {
  #promo {
    height: auto;
    padding: 2rem 0;
  }
}

#promo-white {
  background: #fff6ed;
  text-align: center;
  padding: 0 0 2rem 0;
}

#promo-white > div > h2 {
  margin: 0;
}

@media (max-width: 800px) {
  #promo-white > div > h2 {
    font-size: 1.6rem;
  }
}

.header-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.promo-cover {
  margin: 2rem 0;
}

.promo-cover-onstage {
  margin: 2rem 0;
  width: 600px;
}

/* ===== VIDEO SECTIONS ===== */
#video,
#join {
  background: url(img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 6rem 0;
}

.youtube-video {
  aspect-ratio: 16/9;
  width: 100%;
}

.box {
  background: #fbefe2;
  padding: 2rem;
}

/* ===== BUTTONS ===== */
.btn,
.btn:active,
.btn:focus,
.btn:visited {
  background: #f8e102;
  border: none;
  border-radius: 50px;
  color: #ee3437;
  padding: 20px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: 800;
  margin: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease-out;
}

.btn:hover,
.btn:active:hover,
.btn:focus:hover,
.btn:visited:hover {
  background: #ee3437;
  color: #fbefe2;
}

.btn-outline,
.btn-outline:active,
.btn-outline:focus,
.btn-outline:visited {
  background: transparent;
  border: 1px solid #ee3437;
  border-radius: 50px;
  color: #ee3437;
  padding: 20px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: 800;
  margin: 2rem;
  font-size: 1rem;
  transition: all 0.3s ease-out;
}

.btn-outline:hover,
.btn-outline:active:hover,
.btn-outline:focus:hover,
.btn-outline:visited:hover {
  background: #ee3437;
  color: #fbefe2;
}

.button {
  background-color: #ee3437;
  border: none;
  border-radius: 50px;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 2rem;
  cursor: pointer;
}

.button:hover {
  background-color: #000000;
  transition: all 0.3s;
}

@media (max-width: 800px) {
  .btn,
  .btn:active,
  .btn:focus,
  .btn:visited {
    padding: 15px 30px;
    margin: 1rem;
    font-size: 1rem;
  }
  
  .btn-outline,
  .btn-outline:active,
  .btn-outline:focus,
  .btn-outline:visited {
    padding: 15px 30px;
    margin: 1rem;
    font-size: 0.8rem;
  }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  color: #ee3437;
}

#footer-logo {
  text-align: center;
  max-width: 200px;
  margin: 3rem auto;
}

@media (max-width: 800px) {
  #footer-logo {
    max-width: 150px;
  }
}

.title {
  max-width: 500px;
}

@media (max-width: 800px) {
  .title {
    max-width: 350px;
  }
}

.copyright {
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 2rem 0;
}

.copyright span {
  margin: 0 0.5rem;
}

.copyright a {
  color: #ee3437;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.copyright a:hover {
  color: #000;
}

.copyright ul {
  list-style-type: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.copyright ul li {
  display: inline-block;
  margin: 0 0.5rem;
}

/* ===== EVENT TABLES ===== */
.seated-events-table {
  border-top: 1px solid #f2dfcb !important;
}

.seated-event-description-cells {
  text-transform: uppercase;
}

.seated-follow-box {
  display: none;
}

.seated-event-link {
  background: #ee3437 !important;
  border: none !important;
  border-radius: 50px !important;
  color: #fbefe2 !important;
  padding: 10px !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  transition: all 0.3s ease-out !important;
}

.seated-event-link:hover {
  background: #f8e102 !important;
  color: #ee3437 !important;
}

.seated-event-date-cell {
  font-size: 1.2rem;
}

.seated-event-venue-name {
  margin: 1rem 0 0.5rem 0;
}

.seated-event-details-cell {
  font-size: 0.8rem;
}

.seated-event-row {
  border-bottom: 1px solid #f2dfcb !important;
  padding: 1rem 2rem !important;
}

@media (max-width: 800px) {
  .seated-event-link-cell {
    text-align: center !important;
  }
}

/* ===== FORMS ===== */
#mce-EMAIL {
  padding: 1.5rem 2rem;
  border-radius: 50px;
  background: transparent;
  border: 2px solid #ee3437;
  margin: 1rem 0;
  color: #000;
  font-size: 1rem;
}

::placeholder {
  color: #ee3437;
}

#mc_embed_signup_scroll > div.mc-field-group > div {
  background-color: #ee3437;
  padding: 1rem;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
}

#mce-success-response {
  margin: 2rem 0;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

/* ===== SOCIAL MEDIA ===== */
#social-menu {
  margin: 3rem 0;
}

#social-menu ul {
  margin: 0;
  padding: 0;
}

#social-menu ul li {
  list-style-type: none;
  display: inline-block;
}

#social-menu ul li .fab {
  margin-right: 0.2rem;
  background: #ee3437;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 1.2rem;
  color: #fbefe2;
  transition: all 0.3s ease-out;
}

#social-menu ul li .fab:hover {
  background: #f8e102;
  color: #ee3437;
}

/* ===== ANIMATIONS ===== */
.animate {
  animation: animate-fade 1.5s ease-out 0.5s backwards;
}

@keyframes animate-fade {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* ===== UTILITY CLASSES ===== */
.center {
  text-align: center;
}

.fade {
  font-size: 0.6rem;
}

#logo-signup {
  padding: 3rem 0;
}