@import url("https://fonts.googleapis.com/css2?family=Baskervville&family=Nunito+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Avenir Light";
  src: url("../assets/fonts/avenir-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f8f6f4;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 40px 0;
}
header h1 {
  font-family: Baskervville, serif;
  font-size: 80px;
  font-weight: 500;
  color: #725a58;
}
header hr {
  width: 15%;
  border-top: 1px solid #e3b6b1;
  border-bottom: 1px solid #e3b6b1;
  background-color: transparent;
  margin-bottom: 40px;
}
header p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #191919;
  line-height: 30px;
}

.button-anchor {
  background-color: transparent;
  border: 1px solid #725a58;
  color: #725a58;
  text-decoration: none;
  font-size: 20px;
  padding: 20px 30px;
  text-align: center;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button-anchor:first-of-type {
  margin-top: 40px;
}
.button-anchor:last-of-type {
  margin-bottom: 40px;
}
.button-anchor:hover {
  background-color: #725a58;
  color: #f8f6f4;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 60px;
  background-color: #fae9e7;
}
main #tags {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
}
main #tags .tag {
  font-family: Baskervville, serif;
  font-size: 24px;
  color: #191919;
  border: none;
  background-color: transparent;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
main #tags .tag:hover:not(.active) {
  transform: translateY(-5px);
}
main #tags .tag.active {
  color: #725a58;
  font-weight: 700;
  cursor: default;
}
main #video-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  justify-items: center;
}
main #video-showcase .video-card {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  cursor: pointer;
}
main #video-showcase .video-card img {
  width: 100%;
  height: auto;
  display: block;
}
main #video-showcase .video-card a {
  display: block;
  width: 100%;
  height: 100%;
}
main #video-showcase .video-card a:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.party-chat-widget {
  position: fixed;
  bottom: 50px;
  right: 0;
  margin-bottom: 48px;
  width: 48px;
}
.party-chat-widget .chat-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.party-chat-widget .chat-trigger img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-trigger:hover {
  opacity: 0.9;
}
.party-chat-widget .chat-trigger.hidden img {
  opacity: 0;
  pointer-events: none;
}
.party-chat-widget .chat-options {
  display: none;
  flex-direction: column;
}
.party-chat-widget .chat-options.is-open {
  display: flex;
}
.party-chat-widget .chat-options .option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.party-chat-widget .chat-options .option-btn img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-options .option-btn:hover {
  opacity: 0.8;
}

@media (max-width: 868px) {
  header h1 {
    font-size: 48px !important;
  }
  header hr {
    width: 45% !important;
  }
  main {
    padding: 0 !important;
  }
  main #tags {
    margin-top: 40px !important;
    gap: 0 !important;
  }
  main #tags .tag {
    font-size: 24px !important;
  }
  main #video-showcase {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  main #video-showcase .video-card {
    width: 95% !important;
    max-width: none !important;
  }
  main #video-showcase .video-card img {
    display: block;
    margin: 0 auto;
  }
  .party-chat-widget {
    display: none !important;
  }
}
@media (max-width: 480px) {
  main #tags .tag {
    font-size: 18px !important;
  }
}

/*# sourceMappingURL=beauty-tips.css.map */
