*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.nav-link.active {
  font-weight: 600;
}
header {
  display: flex;
  justify-content: space-around;
}

.nav-container {
  padding: 0 1rem;
  background-color: white;
}
.navbar-js {
  padding: 0;
  margin: 0;
}

.nav-item {
  list-style: none;
  margin: 0;
  padding: 1rem;
  border-bottom: solid 1px lightgray;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nav-item:hover {
  background-color: pink;
  font-weight: 600;
}
.nav-item:active {
  background-color: lightgreen;
}

.nav-item a {
  text-decoration: none;
  color: gray;
  padding: 0 1rem;
}
.nav-item a:hover {
  color: black;
}

.navbar li {
  list-style-type: none;
}
.navbar li a {
  text-decoration: none;
  color: black;
}
.logo-img {
  width: 50px;
  border-radius: 50px;
}
.nav-tablet {
  display: none;
}

.burger-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.burger {
  width: 24px;
  height: auto;
}

.hero {
  position: relative;
  background-image: url("/assets/images/pole_dance2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  color: white;
  text-align: center;
  padding: 1rem;
}
.container-hero-text {
  padding: 1rem;
}
.hero-title {
  font-size: 28px;
  text-align: end;
  margin-bottom: 2rem;
}
.hero-subtitle {
  font-size: 20px;
  text-align: end;
  margin-bottom: 2rem;
}
.hero-explanation {
  text-align: end;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transition: 2s ease;
}
.hero-explanation.showHeroEx {
  opacity: 1;
}

.box-button {
  text-align: end;
}
.button-hero {
  background-color: #bf419fa8;
  color: white;
  height: 36px;
  border-radius: 30px 30px 40px 0;
  font-weight: 600;
  transition: ease 0.5s;
  position: relative;
  padding: 0 30px 0 10px;
}
.button-hero::after {
  content: " →";
  position: absolute;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-5px);
  font-size: 16px;
}
.button-hero:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.61);
  transform: scale(1.05);
}
.button-hero:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.button-hero:active {
  transform: scale(0.95);
  background-color: lightgreen;
}

.main {
  display: flex;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  border: solid black;
  margin: 2rem;
}
.container-double-pictures {
  position: relative;
}
.picture-down {
  position: absolute;
  top: 100px;
  left: 50px;
  z-index: 2;
  width: 100%;
  opacity: 0.8;
}
.picture-up {
  position: relative;
  z-index: 1;
  width: 100%;
}
.container-double-pictures img {
  width: 100%;
}
.container-down {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 4rem;
}
.join-community-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px lightgray;
  text-shadow: -8px -4px 3px pink;
}

.join-subtitle {
  line-height: 2rem;
  color: gray;
  margin: 1rem 2rem;
  opacity: 0;
  transition: opacity 2s ease 0.5s;
}
.join-subtitle::first-letter {
  color: pink;
  font-size: 2rem;
}
.join-subtitle.showJoinCommunity {
  opacity: 1;
}

footer {
  background: linear-gradient(to bottom, black 70%, gray);
  color: white;
  padding: 3rem 1rem 0;
}
.container.footer {
  display: flex;
  flex-direction: column;
}

.card {
  margin-bottom: 1rem;
  font-size: 14px;
  border-top: solid white 1px;
  padding: 2rem 2rem;
}
.title-card {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}
.subtitle-card {
  line-height: 2rem;
}
.phone-card {
  margin-bottom: 2rem;
}
.address-card p {
  color: white;
}
.week-time-card p {
  margin: 0 0 1rem;
  color: white;
}

.social-icons {
  display: flex;
  padding: 0;
}
.circle-icon {
  list-style-type: none;
  margin-right: 10px;
}
.circle-icon img {
  background-color: white;
  border-radius: 20px;
}

.bottom-footer {
  border-top: solid 1px gray;
  padding: 2rem;
}
.copyright {
  text-align: center;
  color: white;
}

.btn-scrolling {
  cursor: pointer;
  display: flex;
  flex-direction: column;

  width: 20px;
  height: 100px;
  border-radius: 10px;
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 10px;
}
.scroll {
  width: 50%;
  padding: 5px;
  background-color: transparent;
  border: solid rgb(206, 199, 199) 1px;
  border-radius: 30px;
  position: absolute;
}
.scroll1 {
  position: absolute;
  top: 15%;
}
.scroll2 {
  position: absolute;
  top: 45%;
}
.scroll3 {
  position: absolute;
  top: 75%;
}

#hours-schedules {
  cursor: pointer;
  transition: ease 0.3s;
}
#hours-schedules:hover {
  color: #dd5169;
}

@media (min-width: 768px) {
  .logo-img {
    width: 60px;
  }
  .burger {
    width: 30px;
  }
  .burger-container {
    width: 50px;
    height: 50px;
  }
  .button-hero {
    height: 50px;
  }
  .container-hero-text {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }

  .card {
    width: 50%;
  }
  .title-card {
    margin-bottom: 2rem;
    font-size: 20px;
  }
  .box-middle {
    padding: 4rem;
  }
  .upper-footer {
    display: flex;
  }
  .down-footer {
    display: flex;
  }
}
@media (min-width: 1024px) {
  header {
    position: fixed;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.4);
    width: 100%;
    height: 15vh;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .logo {
    display: flex;
    align-items: center;
  }
  .logo-img {
    width: 100px;
  }
  .burger-container {
    display: none;
  }
  .nav-tablet {
    width: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .navbar {
    display: flex;
    justify-content: space-around;
  }
  .navbar li {
    font-size: 25px;
    padding: 1rem 0;
    cursor: pointer;
    transition: ease 0.3s;
  }
  .navbar li:hover {
    box-shadow: inset 0 -2px 0 #dd5169;
  }
  .nav-link.active {
    color: #dd5169;
    font-weight: 600;
  }
  .container-hero-text {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 30px;
  }
  .hero-explanation {
    font-size: 20px;
  }
  .container-down {
    justify-content: center;
    width: 85%;
  }

  .phone-card {
    font-size: 32px;
  }
  .box-middle {
    display: flex;
    padding: 0;
  }
  .join-community-title {
    margin-bottom: 2rem;
    padding-bottom: 3rem;
  }

  .container-footer {
    display: flex;
  }
  .upper-footer {
    width: 50%;
  }
  .down-footer {
    width: 50%;
  }
  .title-card {
    margin-bottom: 2rem;
    font-size: 30px;
  }
}
