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

:root {
  --primary-bg: #F8FEFD;
  --primary-accent: #386C60;
  --secondary-accent: #72B4A3;
  --tertiary-accent: #D2BE38;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --border-color: #E0E8E6;
  --shadow-light: rgba(56, 108, 96, 0.08);
}

html, body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

body {
  font-size: 17px;
  line-height: 1.73;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h3 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
}

h4 {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5;
}

.subtitle {
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

em, .emphasis {
  font-style: italic;
  color: var(--primary-accent);
  font-weight: 600;
}

header {
  background-color: rgba(248, 254, 253, 0.95);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(56, 108, 96, 0.04);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(56, 108, 96, 0.12);
  background-color: rgba(248, 254, 253, 0.98);
}

.header-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: 40px;
}

nav {
  display: flex;
  gap: 3rem;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
}

.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-accent);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-alpine.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 108, 96, 0.5) 0%, rgba(114, 180, 163, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.95;
}

section {
  width: 100%;
  padding: 5rem 2rem;
}

.section-full {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-content {
  max-width: 1340px;
  margin: 0 auto;
}

section h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.two-column-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.two-column-block:nth-child(odd) {
  direction: rtl;
}

.two-column-block:nth-child(odd) > * {
  direction: ltr;
}

.two-column-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px var(--shadow-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-light);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(56, 108, 96, 0.15);
  border: 1px solid var(--secondary-accent);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card-content {
  padding: 2rem;
}

.product-card h3 {
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.nutrition-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-light);
}

.nutrition-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

.nutrition-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.facts-box {
  background: linear-gradient(135deg, rgba(114, 180, 163, 0.1) 0%, rgba(210, 190, 56, 0.05) 100%);
  border-left: 4px solid var(--primary-accent);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.facts-box h3 {
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
}

.facts-box p {
  color: var(--text-light);
  margin: 0;
}

.sources-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 5rem;
  box-shadow: 0 4px 12px var(--shadow-light);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.sources-table th {
  background-color: var(--primary-accent);
  color: white;
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}

.sources-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.sources-table tr:last-child td {
  border-bottom: none;
}

.sources-table tbody tr:hover {
  background-color: rgba(248, 254, 253, 1);
}

.influences-section {
  background: linear-gradient(135deg, rgba(114, 180, 163, 0.08) 0%, rgba(248, 254, 253, 1) 100%);
  border-radius: 12px;
  padding: 4rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.influences-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px var(--shadow-light);
}

.influence-list {
  list-style: none;
  padding: 0;
}

.influence-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-dark);
}

.influence-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-weight: 800;
  font-size: 1.5rem;
}

.faq-section {
  background: white;
  border-radius: 12px;
  padding: 4rem;
  margin-bottom: 5rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--secondary-accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.approach-section {
  background: linear-gradient(135deg, rgba(210, 190, 56, 0.1) 0%, rgba(114, 180, 163, 0.05) 100%);
  border-radius: 12px;
  padding: 4rem;
  margin-bottom: 5rem;
  border: 1px solid rgba(210, 190, 56, 0.2);
}

.approach-section h3 {
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
}

.approach-section ul {
  list-style: none;
  padding: 0;
}

.approach-section li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.approach-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-accent);
  font-weight: 800;
}

.final-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 5rem;
}

.final-cta h2 {
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  background: linear-gradient(135deg, rgba(56, 108, 96, 0.05) 0%, rgba(114, 180, 163, 0.05) 100%);
  border-radius: 12px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  color: var(--primary-accent);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
  display: block;
  color: var(--primary-accent);
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-dark);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow-light);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(56, 108, 96, 0.1);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  padding: 1rem;
  background: rgba(210, 190, 56, 0.05);
  border-left: 3px solid var(--tertiary-accent);
  border-radius: 4px;
}

button, .btn {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 108, 96, 0.3);
}

button:active, .btn:active {
  transform: translateY(0);
}

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

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

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--tertiary-accent);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-section p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #CCCCCC;
  margin: 0.5rem 0;
}

.footer-section a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--tertiary-accent);
}

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

.disclaimer-badge {
  background: rgba(210, 190, 56, 0.15);
  border: 1px solid var(--tertiary-accent);
  color: var(--text-dark);
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 2rem 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: white;
  padding: 2rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

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

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

.cookie-buttons button {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  border-radius: 4px;
}

.cookie-buttons .btn-accept {
  background: var(--tertiary-accent);
  color: var(--text-dark);
}

.cookie-buttons .btn-accept:hover {
  background: #C9B03A;
}

.cookie-buttons .btn-reject {
  background: transparent;
  border: 1px solid white;
  color: white;
}

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

.cookie-buttons .btn-details {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.65rem 1.5rem;
}

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

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-block:nth-child(odd) {
    direction: ltr;
  }

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

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  nav {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }

  .hero {
    height: 400px;
  }

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

  .header-container {
    padding: 0 1.5rem;
  }

  nav {
    display: none;
  }

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

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

  .faq-section,
  .approach-section,
  .contact-section,
  .influences-section {
    padding: 2rem 1.5rem;
  }

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

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 2rem 1rem;
  }
}
