/* General Styles */
body {
  font-family: 'Indie Flower', cursive;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 50px;
  background: rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.menu-nav {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu-nav .nav-item .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.menu-nav .nav-item .nav-link:hover,
.menu-nav .nav-item .nav-link.current {
  color: #ff7e5f;
}

main#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.lg-heading {
  font-size: 50px;
  margin-bottom: 20px;
}

.sm-heading {
  font-size: 24px;
  margin-bottom: 40px;
}

.text-secondary {
  color: #ff7e5f;
}

/* Contact Button */
.contact-button-container {
  margin-top: 20px;
}

.send-button {
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 15px 40px;
  font-size: 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.send-button i {
  margin-right: 10px;
}

.send-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Footer */
footer#main-footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 16px;
}
