/* Global Reset and Smooth Scrolling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background Video and Overlay */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: rgba(32, 31, 31, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: background 0.3s ease;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.navbar a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  transform: scale(1.05);
}

.navbar a:active {
  transform: scale(0.95);
}

/* Main Container for Centering Content */
.main-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Content Styling */
.content {
  color: #fff;
  animation: fadeIn 1.5s ease-in forwards;
}

.welcome-text {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.get-started-btn {
  padding: 15px 40px;
  font-size: 1.2em;
  font-weight: 700;
  background-image: radial-gradient(#538647, rgb(58, 150, 58), #217f07, rgb(32, 31, 31));
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  outline: none;
}

.get-started-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #000;
}

.get-started-btn:active {
  transform: scale(0.95);
}

.quote {
  margin-top: 20px;
  font-size: 1.1em;
  font-style: italic;
  color: #ddd;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 0;
  background: rgba(32, 31, 31, 0.8);
  z-index: 100;
  transition: background 0.3s ease;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #538647;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .navbar li {
    margin: 0 10px;
  }

  .navbar a {
    font-size: 1rem;
    padding: 8px 15px;
  }

  .welcome-text {
    font-size: 2.5em;
  }

  .get-started-btn {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .welcome-text {
    font-size: 2em;
  }

  .get-started-btn {
    width: 80%;
  }

  .navbar ul {
    flex-direction: column;
  }

  .navbar li {
    margin: 10px 0;
  }
}