/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Main";
  src: url(assets/fonts/BDLifelessGrotesk-Regular.otf) format("opentype");
}
@font-face {
  font-family: "MainLight";
  src: url(assets/fonts/BDLifelessGrotesk-Light.otf) format("opentype");
}
@font-face {
  font-family: "Secondary";
  src: url(assets/fonts/Intrigora-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Extra";
  src: url(assets/fonts/Neue\ Kaine\ Variable.ttf) format("truetype");
}

body {
  font-family: "Extra";
  background-color: #f5f3ee;
}

/* Navbar */
.navbar {
  font-family: "Extra";
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Desktop Navigation */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #333;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-container {
    display: none; /* Hide all nav links initially */
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-container.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .logo {
    margin: 1rem 0;
  }
}
/* Contact Section */
.contact-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Tabs */
.contact-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.tab-button {
  padding: 10px 20px;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.tab-button.active {
  background: #007bff;
  color: white;
}

/* Forms */
.form-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.contact-form.active {
  display: flex;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-form label {
  text-align: left;
  font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form textarea {
  resize: none;
}

.btn {
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    width: 90%;
  }
}
