:root {
  --font1: "Playfair Display", serif;
  --font2: "Montserrat", sans-serif;
  --color1: hsl(28, 100%, 65%);
  --color2: hsl(28, 100%, 70%);
  --color3: hsl(28, 100%, 75%);
  --color4: hsl(28, 100%, 80%);
  --color5: hsl(28, 100%, 85%);
  --color6: hsl(28, 100%, 92%);
  --color7: hsl(28, 100%, 97%);
  --font-color1: hsl(346, 100%, 15%);
  --font-color2: hsl(13, 100%, 19%);
  --font-size1: clamp(1rem, 2vw + 0.3rem, 2rem);
  --font-size2: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  --font-size3: clamp(1.5rem, 2.5vw + 0.75rem, 3.5rem);
}

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

nav {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: white;
}

#SurbhiSurendra {
  color: var(--font-color1);
  font-family: var(--font1);
  margin-left: 2vw;
  font-size: var(--font-size1);
  white-space: nowrap;
}

.nav_links {
  display: flex;
  height: 80%;
  margin-right: 2vw;
}

.nav_links a {
  display: flex;
  align-items: center;
  flex: 1 0 max-content;
  color: var(--font-color2);
  font-family: var(--font2);
  font-size: var(--font-size2);
  padding: 0 1.5vw;
  border-radius: 50vh;
  transition: background-color 0.5s ease;
}

.nav_links a:hover {
  background-color: var(--color4);
}

.hamburger,
#overlay {
  display: none;
}

.headings {
  text-align: center;
  height: auto;
  width: 100%;
  max-width: 2400px;
}

.headings h1 {
  font-family: var(--font1);
  color: var(--font-color1);
  font-size: calc(var(--font-size1) * 1.5);
}

.headings h3 {
  font-family: var(--font2);
  color: var(--font-color2);
  margin-top: 1rem;
  font-size: var(--font-size2);
}

.explore_btn {
  width: clamp(140px, 10vw, 200px);
  height: 7.5vh;
  min-height: 50px;
  border-radius: 3.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color6);
  font-family: var(--font2);
  color: var(--font-color1);
  font-weight: 525;
  transition: transform 0.3s ease;
  margin-top: 2rem;
}

.explore_btn:hover {
  transform: scale(1.05);
}

.contact_us_form {
  display: flex;
  position: relative;
  top: 10vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 100%;
  gap: 1.5rem;
  background-color: var(--color7);
  padding: 3rem 5vw;
}

.contact_us_form form {
  width: min(600px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.form_cluster {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form_cluster label {
  font-family: var(--font2);
  color: var(--font-color1);
  font-size: var(--font-size2);
}

.form_cluster h3 {
  margin-bottom: 0.5rem;
  color: var(--font-color1);
}

input,
textarea {
  background-color: var(--color6);
  border: none;
  width: 100%;
  height: 50px;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-family: var(--font2);
  font-size: 1rem;
  color: var(--font-color1);
  transition: all 0.3s ease;
  resize: none;
}

textarea {
  height: 150px;
  padding-top: 0.5rem;
}

input:focus,
textarea:focus {
  outline: none;
  background-color: var(--color4);
  border-color: var(--color1);
  box-shadow: none;
}

input[type="submit"] {
  width: max-content;
  padding: 0 2rem;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0.5rem;
  display: flex;
  place-self: center;
}

input[type="submit"]:hover {
  background-color: var(--color4);
}

.footer {
  width: 100%;
  min-height: auto;
  background-color: var(--color6);
  display: flex;
  flex-direction: column;
  position: relative;
  top: 10vh;
  padding: 6vh 6vw 3vh;
  gap: 2.5rem;
  box-sizing: border-box;
}

.footer_inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_logo {
  font-family: var(--font1);
  font-size: 1.6rem;
  color: var(--font-color1);
  letter-spacing: 0.02em;
}

.footer_logo em {
  font-style: italic;
  color: var(--color1);
}

.footer_brand p {
  font-family: var(--font2);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--font-color2);
  max-width: 32ch;
}

.footer_col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer_col h4 {
  font-family: var(--font2);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--font-color1);
  margin-bottom: 0.3rem;
  text-transform: none;
}

.footer_col a {
  font-family: var(--font2);
  font-size: 0.95rem;
  color: var(--font-color2);
  width: max-content;
  position: relative;
  transition: color 0.3s ease;
}

.footer_col a:hover {
  color: var(--font-color1);
}

.footer_col a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--font-color1);
  transition: width 0.3s ease;
}

.footer_col a:hover::after {
  width: 100%;
}

.footer_bottom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid hsla(28, 40%, 40%, 0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--font2);
  font-size: 0.85rem;
  color: var(--font-color2);
}

@media (max-width: 768px) {
  .footer_inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer_bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact_us_form {
    padding: 2rem 4vw;
  }

  .contact_us_form form {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  input[type="submit"] {
    width: 100%;
    place-self: stretch;
  }
}

@media (max-width: 800px) {
  .header_quote {
    display: none;
  }

  nav {
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: block;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin-right: 5vw;
  }

  .hamburger .bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--font-color2);
    border-radius: 3px;
    transition: all 0.4s ease-in-out;
  }

  .hamburger .bar:nth-child(1) {
    top: 0;
  }
  .hamburger .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger .bar:nth-child(3) {
    bottom: 0;
  }

  #navdrop:checked ~ .hamburger .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  #navdrop:checked ~ .hamburger .bar:nth-child(2) {
    opacity: 0;
  }

  #navdrop:checked ~ .hamburger .bar:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .nav_links {
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100vw;
    flex-direction: column;
    height: auto;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
  }

  .nav_links a {
    padding: 15px 0;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.192);
    width: 100%;
    text-align: center;
    border-radius: 0;
  }

  #navdrop:checked ~ .nav_links {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  #navdrop:checked ~ #overlay {
    display: block;
    position: fixed;
    top: 10vh;
    left: 0;
    width: 100vw;
    height: 90vh;
    z-index: 90;
    cursor: pointer;
  }
}
