.btn-primary {
  color: #FFFFFF;
  background: transparent;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  font-optical-sizing: auto;
  border: 1px solid #FFFFFF;
  padding: 10px 24px;
  border-radius: 4px;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
  transition: scale 0.2s ease;
}
.btn-primary:hover {
  opacity: 0.7;
}

.btn-secondary {
  color: #000000;
  background-color: #FFFFFF;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  font-optical-sizing: auto;
  border: 1px solid #FFFFFF;
  padding: 10px 24px;
  border-radius: 4px;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
  transition: scale 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* p,
h1,
h2,
h3,
span {
  cursor: default;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}
hr {
  width: 50%;
  border: #FFFFFF solid 0.07rem;
}

body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: "Roboto Condensed", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-container {
  width: 100%;
  padding: 0 15px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateX(0);
}

header {
  background-color: #001638;
  padding: 15px;
  width: 100%;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, #9A000C, #DFA404, #178C12) 1;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 95px;
  overflow: hidden;
  transition: height 0.5s ease-in-out, background-color 0.5s ease-in-out, transform 0.3s ease-in-out;
}
header.nav-hidden {
  transform: translateY(-100%);
}
header.mobile-active {
  background-color: #000000;
  height: 100vh;
  border-image: none;
}

.spin-button {
  display: inline-block;
  transform-style: preserve-3d;
}

.spin-button.animate {
  animation: spinY 0.8s ease-in-out;
}

@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
nav {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 10px;
}
nav .nav-left,
nav .nav-right,
nav .nav-social-links {
  display: flex;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  left: 0;
  right: 0;
}
nav .nav-left,
nav .nav-right {
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  margin: 0;
  padding-left: 20vw;
}
nav .nav-left {
  top: 20vh;
}
nav .nav-right {
  top: 45vh;
}
nav .nav-social-links {
  bottom: 10vh;
  justify-content: center;
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #9A000C, #DFA404, #178C12) 1;
  padding-top: 2rem;
}
nav .nav-social-links img {
  width: 24px;
  height: 24px;
}
nav a {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav #menu-button {
  grid-column: 1;
  grid-row: 1/3;
  width: 32px;
  cursor: pointer;
  align-self: start;
  margin-top: 8px;
}
nav .brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}
nav .brand .logo {
  color: #FFFFFF;
  font-family: "Alfa Slab One", serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
}
nav .brand .guddoers-logo {
  width: 156px;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
}
nav .tagline {
  grid-column: 2;
  grid-row: 2;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}
nav.mobile-active {
  display: block;
}
nav.mobile-active .brand,
nav.mobile-active .tagline {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
nav.mobile-active .nav-left,
nav.mobile-active .nav-right {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
nav.mobile-active .nav-left {
  margin-top: 15vh;
}
nav.mobile-active .nav-right {
  margin-top: 3rem;
}
nav.mobile-active .nav-left,
nav.mobile-active .nav-right,
nav.mobile-active .nav-social-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
.social-links a {
  transition: opacity 0.2s ease;
}

#hero {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-margin-top: 80px;
}
#hero .section-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}
#hero .section-header .hero-header {
  display: none;
}
#hero .section-header h1 {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 32px;
}
#hero .section-header h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 24px;
}

#host {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}
#host .section-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
#host .section-header h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 32px;
}
#host .about-host_container {
  margin-top: 1.5rem;
  text-align: start;
  width: 100%;
}
#host .about-host_container p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  font-optical-sizing: auto;
  text-align: center;
}
#host .btn-primary {
  margin-top: 0.5rem;
  width: 100%;
}

#studio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
#studio .about-studio_container .hide-on-mobile {
  display: none;
}
#studio .about-studio_container #studio-amenities_para {
  margin-bottom: 1.5rem;
}
#studio .about-studio_container h3 {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  margin-top: 16px;
}
#studio .about-studio_container .studio-list {
  text-align: left;
  list-style-position: inside;
  display: inline-block;
  margin: 0 auto;
}
#studio .about-studio_container .studio-list li {
  margin-bottom: 4px;
}
#studio .section-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
#studio .section-header h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 32px;
}
#studio #studio-rental-info {
  display: none;
  margin-top: 16px;
}
#studio #book-studio-toggle {
  background-color: #FFFFFF;
  color: #000000;
  margin-top: 16px;
}
#studio .studio-image_container {
  margin-bottom: 24px;
}
#studio .btn-primary {
  width: 100%;
}

#creators {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
  width: 100%;
}
#creators h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
#creators .btn-secondary {
  width: 100%;
  margin-bottom: 32px;
  font-weight: 700;
}
#creators ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2.5rem;
  padding: 0;
  width: 100%;
}
#creators ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 1.5rem;
}
#creators ul li img {
  width: 35%;
  max-width: 120px;
  flex-shrink: 0;
  margin-bottom: 0;
}
#creators ul li .card-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#creators ul li .card-text h3 {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
}
#creators ul li .card-text p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  font-optical-sizing: auto;
}

#onboard {
  margin: 40px auto;
  width: 100%;
}
#onboard h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
#onboard form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#onboard form .form-group-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#onboard form .form-group {
  display: flex;
  flex-direction: column;
}
#onboard form .form-group label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  font-optical-sizing: auto;
  margin-bottom: 8px;
}
#onboard form .form-group input,
#onboard form .form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #A0A0A0;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 12px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
}
#onboard form .form-group textarea {
  resize: vertical;
}
#onboard form .btn-primary {
  width: 100%;
  margin-top: 16px;
  border: 1px solid #A0A0A0;
}
#onboard form input:focus,
#onboard form textarea:focus,
#onboard form .btn-secondary:focus {
  outline: none;
  border-color: #FFFFFF;
}

footer {
  width: 100%;
  margin-top: 60px;
  padding: 0 15px 40px 15px;
  text-align: center;
}
footer .social-signoff {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
footer .social-signoff h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 32px;
}
footer .social-signoff .social-links {
  justify-content: center;
}
footer .social-signoff > a {
  position: absolute;
  right: 15px;
  top: 0;
}
footer .copyright-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 10px;
  font-style: normal;
  font-optical-sizing: auto;
  opacity: 0.7;
}

#about {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-margin-top: 80px;
}
#about .section-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}
#about .section-header .about-header {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 32px;
  display: none;
  margin: 0;
}
#about .section-header .social-links {
  display: flex;
  gap: 15px;
}
#about .about-image {
  margin: 20px auto;
  max-width: 90%;
  height: auto;
  transition: opacity 0.2s ease;
}
#about .about-section_container {
  width: 70%;
  display: flex;
  flex-direction: column;
  text-align: start;
}
#about .about-section_container h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 36px;
}
#about .about-section_container p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  font-optical-sizing: auto;
}

#shop {
  margin: 60px auto;
  display: flex;
  max-width: 650px;
  flex-direction: column;
  scroll-margin-top: 80px;
  gap: 24px;
}
#shop .shop_container {
  width: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
#shop .shop_container #coming-soon_header {
  font-family: "Lobster", sans-serif;
  font-weight: 500;
  font-size: 58px;
  display: block;
  line-height: 1.1;
  margin: 0;
}
#shop .shop_container #coming-soon_subheader {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  font-optical-sizing: auto;
  display: block;
  margin-bottom: 16px;
}
#shop .shop_container .btn-primary {
  width: 100%;
}
#shop .social-links {
  width: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  padding: 16px 24px;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    scroll-padding-top: 180px;
  }
}
@media only screen and (min-width: 768px) {
  header {
    height: auto;
    overflow: visible;
  }
  header.mobile-active {
    background-color: #001638;
  }
  .section-container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  nav.mobile-active {
    display: grid;
    min-height: auto;
    padding-top: 0;
  }
  nav #menu-button {
    display: none;
  }
  nav .brand {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav .brand .guddoers-logo {
    width: 266px;
  }
  nav .nav-left {
    grid-column: 1;
    grid-row: 1;
  }
  nav .nav-right {
    grid-column: 3;
    grid-row: 1;
  }
  nav .nav-left,
  nav .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav .nav-social-links {
    display: none;
  }
  nav .tagline {
    display: none;
  }
  #hero .section-header {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  #hero .section-header .hero-header {
    display: block;
  }
  #hero .section-header h1 {
    font-size: 32px;
  }
  #host .section-header,
  #studio .section-header {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  #host .section-header h2,
  #studio .section-header h2 {
    font-family: "Lobster", sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin: 0;
  }
  #host .section-header .social-links,
  #studio .section-header .social-links {
    justify-content: center;
  }
  #host .about-host_container,
  #studio .about-host_container {
    width: 70%;
  }
  #host .btn-primary,
  #studio .btn-primary {
    width: auto;
  }
  #studio .hide-on-mobile {
    display: block;
  }
  #studio .about-studio_container {
    width: 70%;
    margin: 24px auto;
  }
  #studio .about-studio_container .hide-on-mobile {
    display: block;
  }
  #studio .btn-primary {
    width: 300px;
    margin: 0 auto;
  }
  #creators ul li img {
    width: 25%;
    max-width: 160px;
  }
  #onboard form .form-group-row {
    flex-direction: row;
  }
  #onboard form .form-group-row .form-group {
    flex: 1;
  }
  .show-on-mobile {
    display: none;
  }
  #about .section-header {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }
  #about .section-header .social-links {
    display: flex;
    gap: 15px;
  }
  #about .section-header .about-header {
    display: block;
  }
  #about .about-image {
    margin: 20px auto;
    max-width: 70%;
    height: auto;
    display: block;
  }
  #about .about-section_container {
    margin: 1rem;
    width: 40%;
    display: flex;
    flex-direction: column;
    text-align: start;
  }
  #about .about-section_container h2 {
    font-family: "Lobster", sans-serif;
    font-weight: 500;
    font-size: 32px;
  }
  #about .about-section_container p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    font-optical-sizing: auto;
  }
  #shop {
    margin: 60px auto;
    display: flex;
    max-width: 650px;
    flex-direction: column-reverse;
    align-items: center;
    scroll-margin-top: 80px;
    gap: 24px;
  }
  #shop .shop_container {
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    padding: 50px 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  #shop .shop_container #coming-soon_header {
    font-family: "Lobster", sans-serif;
    font-weight: 500;
    font-size: 58px;
    display: block;
    line-height: 1.1;
    margin: 0;
  }
  #shop .shop_container #coming-soon_subheader {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    font-optical-sizing: auto;
    display: block;
    margin-bottom: 16px;
  }
  #shop .shop_container .btn-primary {
    width: 100%;
  }
  #shop .social-links {
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    padding: 16px 24px;
    justify-content: center;
  }
}
@media only screen and (min-width: 1024px) {
  .section-container {
    max-width: 900px;
    padding: 0;
  }
  header {
    padding: 10px 20px;
  }
  nav .nav-left,
  nav .nav-right {
    flex-direction: row;
    gap: 8rem;
  }
  nav .nav-left {
    justify-content: flex-end;
    padding-right: 4rem;
  }
  nav .nav-right {
    justify-content: flex-start;
    padding-left: 4rem;
  }
  nav a {
    font-size: 24px;
  }
  #hero {
    margin: 60px auto;
  }
  #hero .section-header {
    margin-bottom: 2rem;
  }
  #hero .section-header h1 {
    font-size: 36px;
    padding-left: 2.5rem;
  }
  #host {
    margin: 60px auto;
  }
  #host .about-host_container {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: 2rem auto 0;
    gap: 0.25rem;
  }
  #host .about-host_container p {
    text-align: center;
  }
  #studio {
    margin: 60px auto;
    gap: 0.25rem;
  }
  #studio .about-studio_container {
    width: 70%;
  }
  #studio .about-studio_container .hide-on-mobile {
    display: block;
  }
  #studio .about-studio_container p {
    text-align: center;
  }
  #creators {
    margin: 60px auto;
  }
  #creators h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  #creators ul {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  #creators ul li {
    width: 25%;
    flex-direction: column;
    gap: 0;
  }
  #creators ul li .card-text {
    padding: 0.5rem;
    height: 100%;
    gap: 0.5rem;
  }
  #creators ul li img {
    width: 100%;
    max-width: none;
    margin-bottom: 24px;
    transition: scale 0.1s ease;
    transition: rotate 0.1s ease-in-out;
  }
  #creators ul li img:hover {
    scale: 1.05;
    rotate: 10deg;
  }
  #onboard {
    margin: 90px auto;
  }
  #onboard form .btn-primary {
    width: 100%;
    margin: 24px auto 0;
  }
  footer {
    max-width: 900px;
    margin: 80px auto 20px;
  }
  footer .social-signoff {
    flex-direction: column;
  }
  footer .social-signoff a {
    transition: scale 0.5s ease-in-out;
    transition: rotate 4s ease;
  }
  footer .social-signoff a:hover {
    rotate: 360deg;
    scale: 1.2;
  }
  footer .copyright-bar {
    flex-direction: column;
  }
  #about .section-header {
    gap: 2rem;
  }
  #about .section-header .about-header {
    font-family: "Lobster", sans-serif;
    font-weight: 500;
    font-size: 32px;
    display: block;
    margin: 0;
  }
  #about .section-header .social-links {
    display: flex;
    gap: 15px;
  }
  #about .about-section_container h2 {
    font-family: "Lobster", sans-serif;
    font-weight: 500;
    font-size: 36px;
  }
  #about .about-section_container p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    font-optical-sizing: auto;
  }
  #shop {
    margin: 60px auto;
    display: flex;
    max-width: 650px;
    flex-direction: column;
    scroll-margin-top: 80px;
    gap: 24px;
  }
  #shop .shop_container {
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    padding: 50px 198px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  #shop .shop_container #coming-soon_header {
    font-family: "Lobster", sans-serif;
    font-weight: 500;
    font-size: 88px;
    display: block;
    margin: 0;
  }
  #shop .shop_container #coming-soon_subheader {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    font-optical-sizing: auto;
    display: block;
    margin-bottom: 16px;
  }
  #shop .shop_container .btn-primary {
    width: 100%;
  }
  #shop .social-links {
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    padding: 16px 24px;
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  nav a:hover,
  .social-links a:hover,
  footer .social-signoff > a:hover {
    opacity: 0.7;
  }
  #hero img.hero-image:hover,
  #host > img:hover,
  #studio .studio-image_container img:hover,
  #about img:hover {
    opacity: 0.85;
    cursor: pointer;
  }
  .btn-primary:hover,
  .btn-secondary:hover {
    scale: 1.05;
  }
}

/*# sourceMappingURL=style.css.map */
