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

:root {
  --primary: #c45a3e;
  --sage: #a8b5a2;
  --ochre: #e8c39e;
  --indigo: #2f3e5e;
  --white: #ffffff;
  --dark: #1a1a1a;
  --light-gray: #f5f5f5;
}

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

html, body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--indigo);
}

body {
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

header.scroll-down {
  opacity: 0.95;
}

.navbar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.navbar a {
  margin: 0 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark);
  transition: color 0.3s ease;
}

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

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 90, 62, 0.5), rgba(47, 62, 94, 0.5)), url('images/hero-turmeric-boswellia.jpg') center/cover;
  z-index: -1;
  animation: parallax 0.3s ease-out;
}

@keyframes parallax {
  0% { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.hero-content {
  max-width: 900px;
  padding: 0 4rem;
  z-index: 2;
}

.section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 6rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.section.full-bleed {
  padding: 8rem 0;
  background: linear-gradient(to right, rgba(232, 195, 158, 0.1), rgba(196, 90, 62, 0.08));
}

.section.alternate {
  flex-direction: row-reverse;
}

.section-image {
  flex: 0 0 50%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.section-content {
  flex: 0 0 50%;
}

.section-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.divider {
  max-width: 1600px;
  margin: 4rem auto;
  height: 2px;
  background-color: var(--sage);
}

.catalog {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 6rem;
}

.catalog h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.catalog-card {
  background: var(--white);
  border: 1px solid var(--sage);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
}

.catalog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
  background-color: rgba(232, 195, 158, 0.05);
}

.catalog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.catalog-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.catalog-card p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.catalog-card .advantage {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  text-align: left;
}

.catalog-card .advantage::before {
  content: '•';
  color: var(--sage);
  font-weight: bold;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--indigo);
  box-shadow: 0 0 30px rgba(196, 90, 62, 0.4);
}

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

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

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

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
  color: var(--ochre);
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  display: inline-block;
  margin-bottom: 0.5rem;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--sage);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.disclaimer {
  background-color: rgba(168, 181, 162, 0.1);
  border-left: 4px solid var(--sage);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  font-size: 0.9rem;
  margin: 0;
}

.contact-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 6rem;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.thank-you {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 6rem;
  text-align: center;
}

.thank-you h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner.show {
  display: flex;
}

.cookie-message {
  flex: 1;
  min-width: 300px;
}

.cookie-message p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

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

.btn-accept:hover {
  background-color: rgba(196, 90, 62, 0.8);
}

.btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

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

.btn-policy:hover {
  background-color: rgba(196, 90, 62, 0.1);
}

.content-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 6rem;
}

.content-section h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.content-section ul,
.content-section ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-section li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

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

.page-header {
  background: linear-gradient(135deg, rgba(232, 195, 158, 0.15), rgba(196, 90, 62, 0.1));
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.page-header h1 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .navbar a {
    margin: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
  }

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

  .section-image,
  .section-content {
    flex: 1 1 100%;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

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

  .page-header h1,
  .contact-section,
  .thank-you,
  .content-section {
    padding: 2rem;
  }

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

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .section {
    padding: 2rem 1rem;
  }

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

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

  .divider {
    margin: 2rem auto;
  }
}
