* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden;
}

/* ===== MAIN PAGE ===== */

.container {
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo__container {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.logo {
  width: 25%;
  max-width: 210px;
}

.cards__container {
  height: calc(100vh - 200px);
  display: flex;
  gap: 20px;
  overflow-x: auto;
  align-items: center;
  justify-content: center;
}

.card {
  width: 300px;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  transition: 0.3s;
}

/* 💚 GREEN HOVER CARD */
.card:hover {
  transform: scale(1.05);
  border: 3px solid #C8D6A3;
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

/* ===== VIDEO PAGE ===== */

.video-page {
  width: 100vw;
  height: 100vh;
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* VIDEO */
.video-container {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* 💚 GREEN BUTTON */
.back-btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  font-family: sans-serif;

  background: linear-gradient(45deg, #C8D6A3, #C8D6A3);
  color: black;

  transition: 0.3s ease;
}

/* 💚 HOVER EFFECT */
.back-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.7);
}

/* POWERED TEXT */
.powered-by {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: white;
  text-decoration: none;
}