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

:root {
  --color-primary: #1A3C34;
  --color-dark-gray: #2A2A2A;
  --color-light-gray: #F5F5F5;
  --color-white: #FFFFFF;
  --color-text: #3C3C3C;
  --radius: 4px;
  --transition-speed: 0.4s;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'PT Serif', serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-dark-gray);
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(26, 60, 52, 0.1);
  z-index: 1000;
  border-bottom: 3px solid var(--color-primary);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-primary);
  gap: 0.5rem;
}

.navbar-brand img {
  height: 40px;
  width: 40px;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-speed);
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  height: 500px;
  background-image: url('images/hero-mountain.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -80px;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 60, 52, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.6;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid #E5E5E5;
}

section:last-of-type {
  border-bottom: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-primary);
}

.section-title h2 {
  margin-top: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text {
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 1.5rem;
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 60, 52, 0.15);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-speed);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(26, 60, 52, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

footer {
  background-color: var(--color-dark-gray);
  color: var(--color-light-gray);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: color var(--transition-speed);
}

footer a:hover {
  color: var(--color-primary);
}

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

.footer-section h3 {
  color: var(--color-light-gray);
  margin-top: 0;
  font-size: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

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

.disclaimer {
  background-color: var(--color-light-gray);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius);
  font-weight: 500;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #DDD;
  border-radius: var(--radius);
  font-family: 'PT Serif', serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background-color: var(--color-light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(26, 60, 52, 0.15);
  transform: translateY(-4px);
}

.product-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.product-card-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.6;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-gray);
  color: var(--color-light-gray);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-speed);
}

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

.cookie-btn-accept:hover {
  background-color: #0F2720;
}

.cookie-btn-close {
  background-color: transparent;
  color: var(--color-light-gray);
  border: 1px solid var(--color-light-gray);
}

.cookie-btn-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.policy-content {
  line-height: 1.8;
  max-width: 900px;
  margin: 2rem auto;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul,
.policy-content ol {
  margin: 1rem 0 1rem 2rem;
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content strong {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 1rem 1rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    height: 35px;
    width: 35px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 0.85rem;
  }

  .hero {
    height: 350px;
    padding-top: 70px;
    margin-top: -70px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-grid.reverse {
    direction: ltr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  @media (max-width: 576px) {
    .navbar {
      padding: 0.75rem 1rem;
    }

    .nav-menu {
      flex-direction: column;
      gap: 0.5rem;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--color-white);
      flex-direction: column;
      display: none;
      padding: 1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
      display: flex;
    }

    .hamburger {
      display: flex;
    }

    h1 {
      font-size: 1.5rem;
    }

    h2 {
      font-size: 1.2rem;
    }

    .hero {
      height: 300px;
    }

    .hero-content h1 {
      font-size: 1.5rem;
    }

    .hero-content p {
      font-size: 0.9rem;
    }

    .container {
      padding: 0 1rem;
    }
  }
}
