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

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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #faf8f6;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #2c2c2c;
  font-weight: 500;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

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

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

p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #444;
}

a {
  color: #D4A5A5;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.8;
  color: #c0949a;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 165, 165, 0.1);
  padding: 1rem 2rem;
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #D4A5A5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

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

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

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

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: rgba(212, 165, 165, 0.1);
}

nav a.active {
  background-color: rgba(212, 165, 165, 0.2);
  color: #D4A5A5;
}

main {
  margin-top: 80px;
  padding: 2rem 1rem;
  min-height: calc(100vh - 80px - 300px);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, rgba(250, 248, 246, 0.8), rgba(212, 165, 165, 0.1)), url('images/hero-almond-garden.jpg') center/cover;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
  overflow: hidden;
}

.hero h1 {
  color: #2c2c2c;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

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

.section-content.two-col {
  grid-template-columns: 1fr 1fr;
}

.section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(212, 165, 165, 0.15);
  object-fit: cover;
}

.section img.small {
  max-width: 400px;
  max-height: 300px;
}

.section img.medium {
  max-width: 500px;
  max-height: 400px;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(212, 165, 165, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 165, 165, 0.2);
}

.card h3 {
  margin-top: 0;
  color: #D4A5A5;
}

.section-disclaimer {
  background-color: rgba(212, 165, 165, 0.08);
  border-left: 4px solid #D4A5A5;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #555;
}

footer {
  background: linear-gradient(180deg, rgba(212, 165, 165, 0.05), rgba(212, 165, 165, 0.1));
  border-top: 1px solid rgba(212, 165, 165, 0.2);
  padding: 3rem 1rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #D4A5A5;
}

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

.footer-section a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 165, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background-color: #D4A5A5;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #c0949a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 165, 0.3);
}

.cta-button a {
  color: white;
}

.cta-button a:hover {
  color: white;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #D4A5A5;
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.disclaimer-text {
  font-size: 0.9rem;
  color: #666;
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: rgba(212, 165, 165, 0.05);
  border-radius: 6px;
}

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

.product-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(212, 165, 165, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 165, 165, 0.2);
}

.product-card h3 {
  margin-top: 0;
  color: #D4A5A5;
}

.educational-note {
  background-color: #f0e8e8;
  border-left: 4px solid #D4A5A5;
  padding: 1rem;
  border-radius: 6px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 1rem;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  main {
    margin-top: 120px;
  }

  .hero {
    height: 400px;
  }

  .section-content.two-col {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 1.5rem;
  }

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

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

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  main {
    padding: 1rem 0.5rem;
  }

  .hero {
    height: 300px;
    margin-bottom: 2rem;
  }

  .card {
    padding: 1.5rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid rgba(212, 165, 165, 0.2);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

#cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
}

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

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-buttons button.accept {
  background-color: #D4A5A5;
  color: white;
}

.cookie-buttons button.accept:hover {
  background-color: #c0949a;
}

.cookie-buttons button.close {
  background-color: transparent;
  color: #D4A5A5;
  border: 1px solid #D4A5A5;
}

.cookie-buttons button.close:hover {
  background-color: rgba(212, 165, 165, 0.1);
}

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }
}
