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

:root {
  --primary-color: #8AB8D8;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-light: #FAFBFC;
  --bg-white: #FFFFFF;
  --border-light: #E8EEF2;
  --accent-blue: #B3D9F2;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

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

h3 {
  font-size: 1.75rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  font-size: 18px;
}

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

a:hover {
  color: #6FA3C8;
  opacity: 0.9;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo:hover {
  transform: scale(1.03);
  color: var(--primary-color);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  padding: 4rem 20px 2rem;
  margin-top: 5rem;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section p {
  font-size: 14px;
  margin-bottom: 0.8rem;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-disclaimer {
  background-color: var(--accent-blue);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  color: var(--text-dark);
  border-left: 4px solid var(--primary-color);
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F0F7FC 0%, #E8F4FB 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

section {
  padding: 5rem 20px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  border-radius: 2px;
}

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

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

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

.content-text h3 {
  color: var(--primary-color);
}

.content-text p {
  color: var(--text-dark);
  font-size: 18px;
}

.image-block {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-block:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.image-block img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

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

.ingredient-card {
  background: linear-gradient(135deg, #F8FCFE 0%, #F0F7FC 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(138, 184, 216, 0.15);
}

.ingredient-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.4rem;
}

.ingredient-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.myth-card {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid #FFB84D;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.myth-card:hover {
  transform: translateX(10px);
}

.myth-card strong {
  color: #E67E22;
  font-size: 1.1rem;
}

.divider {
  text-align: center;
  margin: 3rem 0;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light));
  left: 0;
}

.divider::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border-light));
  right: 0;
}

.wave-separator {
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.3;
}

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

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

.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(138, 184, 216, 0.1);
}

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

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #6FA3C8;
  transform: scale(1.03);
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.disclaimer-box {
  background-color: #E8F4F8;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.disclaimer-box strong {
  color: var(--primary-color);
}

.newsletter-form {
  max-width: 600px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #F8FCFE 0%, #F0F7FC 100%);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.newsletter-form h3 {
  text-align: center;
  color: var(--primary-color);
  margin-top: 0;
}

.newsletter-form p {
  text-align: center;
  font-size: 16px;
  color: var(--text-dark);
}

.form-wrapper {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.form-wrapper input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
}

.form-wrapper button {
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.form-wrapper button:hover {
  background-color: #6FA3C8;
}

.newsletter-disclaimer {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-delay-1 {
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  animation-delay: 0.2s;
}

.fade-in-delay-3 {
  animation-delay: 0.3s;
}

.page-title {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0F7FC 0%, #E8F4FB 100%);
}

.page-title h1 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.content-page h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
}

.content-page h3 {
  color: var(--text-dark);
}

.content-page ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-page li {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

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

.product-card {
  background: linear-gradient(135deg, #F8FCFE 0%, #F0F7FC 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(138, 184, 216, 0.2);
}

.product-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, #E8F4F8 0%, #D8E8F4 100%);
}

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

.product-card-content h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.product-card-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.product-card-content a {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-card-content a:hover {
  color: #6FA3C8;
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero {
    height: 400px;
  }

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

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

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

  .image-block img {
    height: 300px;
  }

  nav {
    gap: 1rem;
    font-size: 14px;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .form-wrapper button {
    width: 100%;
  }

  section {
    padding: 3rem 20px;
  }

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

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

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

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    height: 300px;
  }

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

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

  p {
    font-size: 16px;
  }

  nav {
    gap: 0.8rem;
    font-size: 13px;
  }

  .logo {
    font-size: 1.4rem;
  }

  section {
    padding: 2rem 15px;
  }

  .image-block img {
    height: 250px;
  }
}
