/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000;
}

/* Background hero section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("https://media.bodepro.com/assets/home_bg.jpg") center / cover no-repeat;
  padding: 3rem 1rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.language-switcher {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  display: flex;
  flex-direction: column; /* 👈 this is the key change */
  gap: 0.5rem;
  z-index: 1000;
  max-width: 100vw;
}

.language-switcher button {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  padding: 0.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}


.language-switcher button:hover {
  background: rgba(68, 0, 153, 0.85); /* brand purple */
  transform: scale(1.05);
}

.language-switcher button:focus-visible {
  outline: 2px solid #440099;
  outline-offset: 3px;
}

.language-switcher img {
  width: 20px;
  height: 20px;
  max-width: 100%;
  display: block;
}

.language-switcher button.active {
  background: #440099;
}


/* Titles */
.page-title {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}


.page-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Video */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s ease;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-description {
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* CTA Buttons */

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-block {
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #440099;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.cta-description {
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #111;
  padding: 1.5rem 1rem;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  text-decoration: none;
  line-height: 0;
}

.social-links img {
  display: block;
  width: 28px;
  height: 28px;
}

.social-links a:focus {
  outline: none;
}
/* =====================
   Tablet Breakpoint
===================== */
@media (min-width: 768px) {
  .page-title {
    font-size: 2.8rem;
  }

  .page-subtitle {
    font-size: 1.7rem;
  }

  .cta-button {
    font-size: 1.6rem;
  }


  .cta-description {
    font-size: 1.2rem;
  }

  .video-description {
    font-size: 1.2rem;
  }

  .cta-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .cta-block {
    flex: 1;
    max-width: 380px;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =====================
   Desktop Breakpoint
===================== */
@media (min-width: 1024px) {
  .container {
    max-width: 1100px;
  }

  .page-title {
    font-size: 3.2rem;
  }

  .page-subtitle {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.3rem;
  }

  .video-description {
    font-size: 1.3rem;
  }
}

@media (max-width: 360px) {
  .language-switcher {
    bottom: 0.75rem;
    right: 0.75rem;
  }
}
