/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: crosshair;
}

body {
  font-family: 'Unbounded', sans-serif;
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  mix-blend-mode: difference;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: white;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #0a0a0a, #333);  /* Matching hero background */
  padding: 6rem 2rem;
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: bold;
}

.contact-subtext {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #333;
  background: #333;
  color: white;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border: 1px solid gold;
  background: #444;
}

.submit-btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background: gold;
  color: #0a0a0a;
  border-radius: 3px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background: #111;
  padding: 2rem;
  text-align: center;
  color: #aaa;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .contact {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-subtext {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1rem;
    width: 100%;
  }

  .input-group input,
  .input-group textarea {
    width: 100%;
  }

  .submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 1.5rem 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .contact-form {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
  }
}
