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

:root {
  --primary-brown: #3F2A1D;
  --accent-green: #5E8C31;
  --warm-clay: #B87A4F;
  --neutral-taupe: #A89F8F;
  --light-bg: #F5F3F0;
  --white: #FFFFFF;
  --text-dark: #2A2A2A;
}

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

html, body {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 30px;
}

h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 30px;
}

h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  line-height: 1.78;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  border-bottom: 1px solid rgba(63, 42, 29, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px rgba(63, 42, 29, 0.08);
}

.header-container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 20px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-brown);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

nav {
  display: none;
}

nav.active {
  display: flex;
  position: fixed;
  left: 0;
  top: 70px;
  width: 250px;
  height: calc(100vh - 70px);
  background-color: var(--light-bg);
  flex-direction: column;
  padding: 30px 20px;
  gap: 15px;
  animation: slideIn 0.3s ease;
  z-index: 999;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

nav a {
  color: var(--primary-brown);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: var(--accent-green);
  color: var(--white);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-brown);
  transition: all 0.3s ease;
}

/* Container & Sections */
.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 7vw;
}

section {
  padding: 150px 7vw;
  background-color: var(--white);
}

section.alt-bg {
  background-color: var(--light-bg);
}

/* Hero Section */
.hero {
  margin-top: 70px;
  padding: 130px 7vw;
  background: linear-gradient(135deg, rgba(63, 42, 29, 0.05) 0%, rgba(94, 140, 49, 0.03) 100%);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  color: var(--primary-brown);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  color: var(--neutral-taupe);
  margin-bottom: 25px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 15px 35px;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--warm-clay);
  transform: translateY(-2px);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(63, 42, 29, 0.12);
  transition: all 0.45s ease;
  border: 1px solid rgba(94, 140, 49, 0.1);
}

.card:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 32px rgba(63, 42, 29, 0.18);
  border-color: var(--accent-green);
}

.card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  color: var(--primary-brown);
  margin-bottom: 15px;
}

.card-content p {
  color: var(--neutral-taupe);
  font-size: 16px;
  line-height: 1.6;
}

.card-properties {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.property-tag {
  background-color: var(--light-bg);
  color: var(--primary-brown);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid var(--accent-green);
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.two-column-image img {
  width: 100%;
  height: auto;
  display: block;
}

.two-column-content h2 {
  color: var(--primary-brown);
}

.two-column-content p {
  color: var(--neutral-taupe);
}

/* List Styles */
.numbered-list {
  list-style: none;
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  line-height: 1.6;
}

.numbered-list li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--accent-green);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

/* Footer */
footer {
  background-color: var(--primary-brown);
  color: var(--white);
  padding: 60px 7vw 40px;
}

.footer-container {
  max-width: 1420px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--accent-green);
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.footer-section a {
  color: var(--accent-green);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-section a:hover {
  color: var(--warm-clay);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-message {
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
}

/* Disclaimer Section */
.disclaimer {
  background-color: var(--light-bg);
  padding: 30px;
  border-left: 4px solid var(--accent-green);
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer h3 {
  color: var(--primary-brown);
  font-size: 20px;
  margin-bottom: 15px;
}

.disclaimer p {
  font-size: 15px;
  color: var(--neutral-taupe);
  line-height: 1.7;
}

/* Form */
form {
  max-width: 600px;
  margin: 40px 0;
}

.form-group {
  margin-bottom: 25px;
}

form label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--primary-brown);
  margin-bottom: 10px;
  font-size: 15px;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--neutral-taupe);
  border-radius: 4px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(94, 140, 49, 0.1);
}

form button {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 15px 35px;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: var(--warm-clay);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-brown);
  color: var(--white);
  padding: 20px 7vw;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-height: 120px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--accent-green);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: var(--warm-clay);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
}

.cookie-btn-reject:hover {
  background-color: rgba(94, 140, 49, 0.1);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-learn:hover {
  background-color: rgba(94, 140, 49, 0.1);
}

/* Thank You Page */
.thank-you-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 50px 20px;
}

.thank-you-container h1 {
  color: var(--primary-brown);
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 18px;
  color: var(--neutral-taupe);
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px 7vw;
  }

  .header-container {
    padding: 15px 7vw;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero {
    padding: 80px 7vw;
    gap: 30px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 7vw;
  }

  nav.active {
    width: 100%;
    top: 60px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 7vw;
    max-height: none;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .numbered-list li {
    padding-left: 45px;
  }

  .numbered-list li:before {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
