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

:root {
  --primary-color: #3E2723;
  --cream-bg: #FFF8E7;
  --white-block: #FFFFFF;
  --gold-accent: #C9A962;
  --text-dark: #2C1810;
  --text-muted: #6D4C41;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

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

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

.navbar {
  background: var(--white-block);
  box-shadow: 0 2px 12px rgba(62, 39, 35, 0.08);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--gold-accent);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--gold-accent);
}

.content-wrapper {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 400px);
}

.hero-section {
  background: linear-gradient(135deg, rgba(62, 39, 35, 0.92), rgba(62, 39, 35, 0.85)), url('../images/hero-ingredients.jpg') center/cover;
  color: var(--cream-bg);
  padding: 120px 0 100px;
  margin-bottom: 0;
  position: relative;
}

.hero-section h1 {
  color: var(--cream-bg);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent) 50%, transparent);
}

.content-section {
  background: var(--white-block);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(62, 39, 35, 0.06);
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-accent);
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(62, 39, 35, 0.12);
  margin: 1.5rem 0;
}

.img-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 45%;
}

.img-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 45%;
}

.btn-custom {
  background-color: var(--primary-color);
  color: var(--cream-bg);
  padding: 12px 32px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-custom:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 39, 35, 0.2);
}

.disclaimer-box {
  background: linear-gradient(135deg, #FFF8E7 0%, #FAF0DC 100%);
  border-left: 4px solid var(--gold-accent);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.faq-section {
  padding: 60px 0;
}

.faq-item {
  background: var(--white-block);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 3px 15px rgba(62, 39, 35, 0.08);
  border-left: 3px solid var(--gold-accent);
}

.faq-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--white-block);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(62, 39, 35, 0.1);
}

.form-control {
  border: 2px solid #E0E0E0;
  padding: 12px;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.2);
}

.contact-info {
  background: var(--cream-bg);
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

footer {
  background: var(--primary-color);
  color: var(--cream-bg);
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h4 {
  color: var(--gold-accent);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--cream-bg);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

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

footer p {
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.3);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}

.educational-notice {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
  border: 2px solid var(--gold-accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
  font-style: italic;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white-block);
  box-shadow: 0 -4px 20px rgba(62, 39, 35, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  border-top: 3px solid var(--gold-accent);
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn-custom {
  padding: 8px 24px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.85rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .img-left,
  .img-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  
  .content-section {
    padding: 40px 20px;
    margin: 20px 0;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .cookie-banner {
    padding: 1rem 0;
  }
  
  .cookie-banner .btn-custom {
    margin-top: 1rem;
    display: block;
    width: 100%;
  }
}
