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

:root {
  --color-amber-900: #451a03;
  --color-amber-800: #78350f;
  --color-amber-700: #b45309;
  --color-amber-600: #d97706;
  --color-amber-500: #f59e0b;
  --color-amber-100: #fef3c7;
  --color-amber-50: #fffbeb;
  --color-wood-dark: #2c1a0f;
  --color-wood-mid: #5c3a21;
  --color-earth-green: #4b5320;
  --color-bg: #faf8f5;
  --color-bg-alt: #f1ede5;
  --color-text-main: #332b26;
  --color-text-muted: #5e5046;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'PT Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-wood-dark);
}

a {
  text-decoration: none;
  color: var(--color-amber-700);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-amber-900);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  color: #fff;
  margin-left: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-amber-100);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-wood-dark);
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 26, 15, 0.9) 0%, rgba(44, 26, 15, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  padding-top: 80px;
}

.hero-content h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-amber-600);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-amber-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-section > * {
  flex: 1;
}

.split-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(44, 26, 15, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  border-bottom: 4px solid var(--color-amber-600);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--color-text-muted);
}

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

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-wood-dark);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-amber-600);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 20px;
}

.footer {
  background-color: var(--color-wood-dark);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--color-amber-500);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: block;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-amber-500);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  padding: 20px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cookie-btn {
  background-color: var(--color-wood-dark);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.page-header {
  background-color: var(--color-wood-dark);
  padding: 120px 0 60px;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  color: #fff;
}

.page-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.page-content p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .split-section {
    flex-direction: column;
  }

  .header {
    background-color: rgba(44, 26, 15, 0.95);
  }

  .nav-links {
    display: none;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
