@import url('./colors.css');
html, body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Roboto Variable';
  letter-spacing: 0.5px;
  padding: 0px;
  margin: 0px;
  font-size: var(--font-size);
}

html *, body * {
  box-sizing: border-box;
}

html h1, body h1 {
  font-size: 3cqw;
  font-family: 'Lora', serif;
  font-weight: 400;
}

html section.landing-section, body section.landing-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

html section.landing-section .landing-page-container, body section.landing-section .landing-page-container {
  display: flex;
  gap: 40px;
  width: calc(100vw - 40px);
  max-width: 800px;
  justify-content: center;
  align-items: center;
}

html section.landing-section .landing-page-container .landing-btn, body section.landing-section .landing-page-container .landing-btn {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 300px;
  display: flex;
  container-type: inline-size;
  background-color: var(--button-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  transition: height 0.3s ease, transform 0.3s ease;
  transition-delay: .25s;
}

html section.landing-section .landing-page-container .landing-btn .btn-title-cover, body section.landing-section .landing-page-container .landing-btn .btn-title-cover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}

html section.landing-section .landing-page-container .landing-btn .btn-title-cover h3, body section.landing-section .landing-page-container .landing-btn .btn-title-cover h3 {
  font-size: 8.5cqw;
  font-weight: bold;
  color: var(--text-color-highlight);
  width: 100%;
  text-align: center;
  background: linear-gradient(var(--text-color-highlight), var(--text-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: opacity 0.3s ease;
  transition-delay: .25s;
}

html section.landing-section .landing-page-container .landing-btn .section-list, body section.landing-section .landing-page-container .landing-btn .section-list {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

html section.landing-section .landing-page-container .landing-btn .section-list li, body section.landing-section .landing-page-container .landing-btn .section-list li {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.3s ease;
  cursor: pointer;
}

html section.landing-section .landing-page-container .landing-btn .section-list li span, body section.landing-section .landing-page-container .landing-btn .section-list li span {
  font-size: 6cqw;
  color: var(--text-color);
  transition: font-size 0.3s ease;
}

html section.landing-section .landing-page-container .landing-btn .section-list:hover li, body section.landing-section .landing-page-container .landing-btn .section-list:hover li {
  height: 40px;
}

html section.landing-section .landing-page-container .landing-btn .section-list li:hover span, body section.landing-section .landing-page-container .landing-btn .section-list li:hover span {
  font-size: 7cqw;
  color: var(--text-color-highlight);
}

html section.landing-section .landing-page-container .landing-btn:hover .btn-title-cover p, body section.landing-section .landing-page-container .landing-btn:hover .btn-title-cover p {
  opacity: .15;
  transition-delay: 0s;
}

html section.landing-section .landing-page-container .landing-btn:hover, body section.landing-section .landing-page-container .landing-btn:hover {
  height: 500px;
  transition-delay: 0s;
  transform: scale(1.05);
}

html section.landing-section .landing-page-container .landing-btn:hover .section-list, body section.landing-section .landing-page-container .landing-btn:hover .section-list {
  opacity: 1;
}

html section.slideshow .slideshow-container, body section.slideshow .slideshow-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin: 0 auto 100px;
  background-color: #333;
  /* Fading animation */
  /* Container to center the dots at the bottom of the slideshow */
  /* Style for the navigation buttons */
  /* Active dot and hover states */
}

html section.slideshow .slideshow-container .slide, body section.slideshow .slideshow-container .slide {
  display: none;
  height: 100%;
}

html section.slideshow .slideshow-container .slide h2, body section.slideshow .slideshow-container .slide h2 {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  z-index: 10;
}

html section.slideshow .slideshow-container .slide .play-video-button, body section.slideshow .slideshow-container .slide .play-video-button {
  position: absolute;
  left: calc(50% - 250px);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

html section.slideshow .slideshow-container .slide .play-video-button:hover, body section.slideshow .slideshow-container .slide .play-video-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

html section.slideshow .slideshow-container .slide img, body section.slideshow .slideshow-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html section.slideshow .slideshow-container .fade, body section.slideshow .slideshow-container .fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: .4;
  }
  to {
    opacity: 1;
  }
}

html section.slideshow .slideshow-container .slideshow-nav-container, body section.slideshow .slideshow-container .slideshow-nav-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 110px;
  background-color: rgba(10, 10, 10, 0.5);
  height: 30px;
  border-radius: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  /* Ensures buttons stay on top of the images */
}

html section.slideshow .slideshow-container .dot, body section.slideshow .slideshow-container .dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease, transform 0.2s ease;
}

html section.slideshow .slideshow-container .active, html section.slideshow .slideshow-container .dot:hover, body section.slideshow .slideshow-container .active, body section.slideshow .slideshow-container .dot:hover {
  background-color: #ffffff;
  transform: scale(1.2);
  /* Slightly enlarges active/hovered button */
}

html section.introduction-section .introduction, body section.introduction-section .introduction {
  width: 750px;
  margin: 0 auto 200px;
}

html section.introduction-section .introduction h1, body section.introduction-section .introduction h1 {
  font-size: 4cqw;
  color: var(--text-color-highlight);
}

html section.introduction-section .introduction h4, body section.introduction-section .introduction h4 {
  color: var(--accent-color);
}

html section.introduction-section .introduction p, body section.introduction-section .introduction p {
  font-size: 125%;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.5;
}

html section.introduction-section .introduction p span, body section.introduction-section .introduction p span {
  color: var(--text-color-highlight);
}

html section.introduction-section .introduction .social-media-container, body section.introduction-section .introduction .social-media-container {
  position: relative;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

html section.introduction-section .introduction .social-media-container button, body section.introduction-section .introduction .social-media-container button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: var(--button-color);
  color: var(--accent-color);
  border: none;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

html section.introduction-section .introduction .social-media-container button:hover, body section.introduction-section .introduction .social-media-container button:hover {
  background: linear-gradient(to right, var(--complementary-color), var(--accent-color));
  color: var(--background-color);
  transform: scale(1.1);
}

html .bottom, body .bottom {
  background-color: #fafafc;
  color: var(--text-color);
  padding: 40px 20px;
  text-align: center;
}

html .bottom .bottom-container, body .bottom .bottom-container {
  max-width: 800px;
  margin: 0 auto;
}

html .bottom .bottom-container h4, body .bottom .bottom-container h4 {
  font-size: 2cqw;
  margin-bottom: 10px;
}

html .bottom .bottom-container p, body .bottom .bottom-container p {
  font-size: 1.2cqw;
  margin-bottom: 5px;
}

html .bottom .bottom-container a, body .bottom .bottom-container a {
  color: var(--text-color-highlight);
  text-decoration: none;
  transition: color 0.3s ease;
}

html .bottom .bottom-container a:hover, body .bottom .bottom-container a:hover {
  color: var(--primary-color);
}

@media (max-width: 700px) {
  .landing-page-container {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  section.introduction-section .introduction {
    width: 90%;
  }
}
