@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

.contact_section {
  width: 100%;
  height: 100vh;
  background: url('../images/contact.jpg') no-repeat center center/cover;
}
/* ===== responsive header/menu (mobile-first) ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  gap: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  z-index: 999;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* logo */
header .header_img {
  width: 56px;
  height: auto;
  display: block;
  animation: spin 6s linear infinite;
}

/* menu icon (hamburger) */
header .header_span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgb(212, 212, 212);
  cursor: pointer;
  padding: 8px;
}

/* hide the nav overlay by default (mobile) */
header .navigation_menu {
  display: none;
}

/* overlay when active */
header .navigation_menu.active {
  display: flex;
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

/* menu box */
header .navigation_menu ul {
  width: 92%;
  max-width: 420px;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  list-style: none;
  border-radius: 10px;
}

/* close button */
header .navigation_menu .close_ {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1010;
  cursor: pointer;
}
header .navigation_menu .close_ i {
  font-size: 28px;
  color: #fff;
}

/* nav items (mobile) */
header .navigation_menu ul div li {
  width: 100%;
  padding: 12px 18px;
  text-align: center;
  border-radius: 6px;
  transition: background 180ms ease, transform 180ms ease;
  list-style: none;
}
header .navigation_menu ul div li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
header .navigation_menu ul div li a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

/* Prevent body scroll when menu open (helper class applied by JS) */
body.menu-open {
  overflow: hidden;
}

/* ===== Desktop layout (>= 880px) ===== */
@media (min-width: 880px) {
  header {
    height: 100px;
    padding: 0 2.5rem;
    gap: 1rem;
  }

  header .header_img {
    width: 110px;
  }

  /* show inline nav on desktop */
  header .navigation_menu {
    display: block;
    position: static;
    background: transparent;
    height: auto;
    width: auto;
  }

  header .navigation_menu ul {
    background: transparent;
    width: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  header .navigation_menu ul div {
    display: block;
  }

  header .navigation_menu ul div li {
    width: auto;
    padding: 0;
    border-radius: 0;
  }

  header .navigation_menu ul div li a {
    font-size: 16px;
    color: rgb(212, 212, 212);
    text-transform: lowercase;
    font-weight: 600;
    letter-spacing: 0.06rem;
  }

  /* hide hamburger on desktop */
  header .header_span {
    display: none;
  }

  /* hide close on desktop */
  header .navigation_menu .close_ {
    display: none;
  }
}

/* small polish */
header .navigation_menu ul div li a:focus,
header .navigation_menu ul div li a:hover {
  color: #a5a5ff;
  outline: none;
}

/* make sure page content doesn't go under header */
html {
  scroll-padding-top: 100px;
} /* for anchor links */

.contact_section .contact_container {
  width: 100%;
  height: 100vh;

  padding: 20px;
  border-radius: 10px;
}

.contact_section .contact_container span {
  font-size: 80px;
  color: white;
  text-align: center;
  display: block;
  margin-top: 90px;
  color: rgb(165, 165, 255);
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 10px;
}

.contact_section .contact_container .contact_form {
  width: 50%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.contact_section .contact_container .contact_form label {
  font-size: 20px;
  color: white;
  font-weight: 600;
}

.contact_section .contact_container .contact_form input {
  padding: 15px;
  border: 3px solid gray;
  background: #282828;
  font-size: 16px;
  width: 60%;
  color: white;
}
.contact_section .contact_container .contact_form input:focus {
  outline: none;
  background: black;
}

.contact_section .contact_container .contact_form textarea {
  padding: 15px;
  border: none;

  font-size: 16px;
  width: 50%;
  height: 250px;
  color: white;
  resize: none;
  background: #282828;
}

.contact_section .contact_container .contact_form textarea:focus {
  outline: none;
}

.contact_section .contact_container .contact_form button {
  padding: 15px 30px;
  border: none;
  font-size: 18px;
  background: white;
  color: black;
  border-left: 2px solid rgb(165, 165, 255);
  border-right: 2px solid rgb(165, 165, 255);
  border-bottom: 0;
  border-top: 0;

  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
