/* ==============================================
   RESET / BASE STYLES
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* 1rem = 18px */
}

body {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  background-color: #EEEAE4;
  color: #000;
  text-align: left;
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1 {
  font-size: 6rem;
  line-height: 100%;
}

h2 {
  font-size: 3rem;
  line-height: normal;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
}

p {
  line-height: normal;
}

/* ==============================================
   UTILITY CLASSES (Currently empty placeholder)
   ============================================== */
/* Add any utility classes here if needed */

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
.header {
  width: calc(100% - 3rem);
  background-color: #EEEAE4;
  border-bottom: 2px solid #000;
  position: fixed;
  top: 0;
  z-index: 1000;
  margin: 0 1.5rem;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.burger {
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Mobile nav collapsed */
.mobile-nav-links {
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #EEEAE4;
  list-style: none;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: 200px;
}

.mobile-nav-links li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-links li a:hover {
  text-decoration: underline;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero-content {
  width: 100%;
  height:  calc(100vh - 60px - 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  z-index: 1;
}

.hero-title {
  white-space: nowrap;
  font-size: 7.7vw;
}

.hero-buttons {
  display: flex;
  width: 100%;
  gap: 1rem;
  font-size: 1.1rem;
}

/* CTA Button */
.cta {
  display: flex;
  flex: 1;
  width: 50%;
  align-items: center;
  background-color: #000;
  color: #EEEAE4;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta:hover {
  background-color: #4D8E4D;
}

.arrow-down {
  display: flex;
  flex: 1;
  width: 50%;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #000;
  padding: 1rem 1.5rem 1rem 1rem;
  transition: all 0.3s ease;
  gap: 1rem;
}

.arrow-down:hover {
  background-color: #000;
  color: #EEEAE4;
}

/* ==============================================
   SECTIONS
   ============================================== */
section {
  padding: 60px 1.5rem;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #EEEAE4;
}

/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact form {
  max-width: 50vw;
  margin: 1.5rem 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  border: 2px solid #000;
  padding: 0.5rem;
  font-size: 1rem;
  outline: none;
  font-family: 'Golos Text', sans-serif;
  background-color: #EEEAE4;
  width: 100%;
}

button[type="submit"] {
  background-color: #4D8E4D;
  color: #EEEAE4;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

button[type="submit"]:hover {
  background-color: #000;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background-color: #000;
  color: #EEEAE4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links {
  margin: 1rem 0;
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #EEEAE4;
}

.back-to-top {
  color: #EEEAE4;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #EEEAE4;
  padding: 0.5rem 1rem;
}

.back-to-top:hover {
  background-color: #EEEAE4;
  color: #000;
}

/* ==============================================
   RESPONSIVE QUERIES
   ============================================== */
@media (max-width: 1280px) {
  html {
    font-size: 16px; /* 1rem = 16px */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px; /* 1rem = 14px */
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-title {
    white-space: normal;
    font-size: 12vw;
  }

  .hero-content {
    padding-top: 2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }
}
