@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

html { 
  scroll-behavior: smooth; 
}

body {
  background: #000;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;
  background: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.logo {
  width: 76px;
  height: auto;
}

nav {
  display: flex;
  gap: 44px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.4px;
}

nav a:hover,
nav a[href="quote.html"] {
  color: #d8a154;
}

.quote-btn,
button {
  background: #d8a154;
  color: white;
  border: none;
  padding: 13px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
}

.quote-btn:hover,
button:hover {
  transform: translateY(-3px);
  background: #c99043;
}

.menu-toggle {
  display: none;
  background: none;
  padding: 0;
  font-size: 30px;
  color: white;
}

.mobile-menu { 
  display: none; 
}

/* QUOTE PAGE */

.quote-page {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), url('assets/quote-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-wrapper {
  width: 100%;
}

.quote-wrapper h1 {
  font-size: 58px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -3px;
}

.quote-form {
  max-width: 760px;
  margin: auto;
  padding: 42px;
  background: rgba(0, 0, 0, 0.86);
}

input,
textarea {
  width: 100%;
  padding: 17px;
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 15px;
  border: none;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 22px;
}

.checkboxes label {
  font-size: 15px;
  font-weight: 300;
}

.checkboxes input {
  width: auto;
  margin-right: 6px;
}

.quote-form button { 
  width: 100%; 
}

.hidden {
  display: none;
}

/* MOBILE */

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    padding: 0 7%;
  }

  .logo {
    width: 70px;
  }

  nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1.2px;
  }

  .quote-page {
    padding: 120px 6% 70px;
    align-items: flex-start;
  }

  .quote-wrapper h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .quote-form {
    padding: 28px;
  }

  .checkboxes {
    gap: 14px;
  }
}

@media (max-width: 500px) {
  .quote-wrapper h1 {
    font-size: 36px;
  }

  .checkboxes {
    flex-direction: column;
    gap: 12px;
  }
}

form label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}

.site-footer {
  background: #000;
  padding: 65px 8% 55px;
  text-align: center;
}

.footer-logo {
  width: 82px;
  margin-bottom: 35px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-contacts a:hover {
  color: #d8a154;
}

.footer-contacts img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 900px) {

  .footer-logo {
    width: 70px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 18px;
  }

  .footer-contacts a {
    justify-content: center;
  }

}