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

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #fff;
  color: whitesmoke;
  transition: background-color 0.3s, color 0.3s;
}

/* Background Effect */
.background-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(45deg, #ff9800, #6200ea, #03a9f4, #4caf50);
  background-size: 600% 600%;
  animation: hueRotation 5s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes hueRotation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header */
.header {
  text-align: center;
  padding: 20px;
  background: #1c1512;
  position: relative;
}

.header h1, 
.header p {
  font-weight: bold;
  background: linear-gradient(45deg, #ff9800, #6200ea, #03a9f4, #4caf50);
  background-size: 600% 600%;
  animation: hueRotation 5s ease-in-out infinite;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}

.header h1 {
  font-size: 5rem;
  padding: 10px;
}

.header p {
  font-size: 1.2rem;
}

.menu-toggle {
  display: block;
  background: transparent;
  border: none;
  font-size:  1.5rem;
  color: white;
  position: absolute;
  top: 15px;
  cursor: pointer;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: rgba(239, 166, 138, 0.3);
  padding: 15px;
}

.nav a {
  color: #ec622b;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added shadow effect */
}

.nav a:hover {
  color: #da2709;
}



hr {
  background-color: black;
  color: black;
}

/* Main Section */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 20px;
}

#lottie-container {
  max-width: 100%;
  height: auto;
}

/* About Section */
.about {
  max-width: 600px;
  margin-top: 20px;
  color: white;
  font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added shadow effect */

}

.about h2 {
    color: #ec622b;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added shadow effect */
      padding: 5px;


}

/* Footer */
.footer {
  background: black;
  text-align: center;
  padding: 15px;
  color: #ec622b;
}

.footer a {
  color: #ec622b;
  text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #ec622b;
    font-weight: 900;
    position: relative;
    top: 10px;
    margin: 0 auto;
  }

  .header h1 {
    font-size: 3rem;
    font-weight: 900;
  }

  .header p {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .nav {
    flex-direction: column;
    text-align: center;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .main {
    padding: 10px;
  }

  #lottie-container {
    width: 100%;
    max-height: 300px;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
