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

/* BODY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  height: 100vh;
  background: linear-gradient(
      rgba(255, 255, 255, 0.55),
      rgba(251, 27, 27, 0.55)
    ),
    url("assets/img/landing-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* MAIN CONTAINER */
.landing-container {
  text-align: center;
  padding: 60px 40px;
  max-width: 700px;
  animation: fadeInUp 1.2s ease forwards;
}

/* TITLE */
.landing-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
  animation: fadeIn 1.5s ease forwards;
}

/* BUTTONS */
.landing-button {
  display: inline-block;
  margin: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid #fdfdfd;
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.landing-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 20, 20, 0.3);
}

/* SECONDARY BUTTON STYLE */
.landing-button:last-child {
  background: red;
  color: #ffffff;
  border-color: red;
}

.landing-button:last-child:hover {
  background: #fff;
  color: #000;
}

.landing-logo {
  width: 300px;
  /* margin-bottom: 30px; */
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .landing-title {
    font-size: 24px;
  }

  .landing-subtitle {
    font-size: 18px;
  }

  .landing-button {
    width: 100%;
    max-width: 260px;
  }

  .landing-logo {
    width: 200px;
  }
}
