@import url('https://fonts.googleapis.com/css2?family=Anton:wght@400&family=Roboto+Slab:wght@400;700&display=swap');

:root {
  --primary-color: #3D2B1F;
  --text-dark: #2A2520;
  --text-light: #F5F5F5;
  --border-light: #D4D4D4;
  --bg-light: #FAFAF8;
  --accent-brown: #5C4C40;
  --radius: 6px;
}

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

html, body {
  font-family: 'Roboto Slab', serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
}

h3 {
  font-size: 24px;
  color: var(--accent-brown);
  margin-top: 24px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.35s ease;
  font-weight: 700;
}

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

body {
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" /></filter><rect width="100" height="100" fill="%235C4C40" opacity="0.03"/></svg>');
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.15);
  backdrop-filter: blur(5px);
}

.header-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 44px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
}

.logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

nav a {
  margin-left: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  padding: 4px 8px;
  border-radius: var(--radius);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

.hero {
  width: 100%;
  height: 500px;
  background: linear-gradient(rgba(61, 43, 31, 0.3), rgba(61, 43, 31, 0.3));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -80px;
  padding-top: 80px;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  color: white;
  font-size: 56px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.hero p {
  color: #F5F5F5;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.content-section {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-section:nth-child(even) {
  direction: rtl;
}

.content-section:nth-child(even) > * {
  direction: ltr;
}

.section-text {
  padding: 0;
}

.section-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(61, 43, 31, 0.15);
  transition: transform 0.35s ease;
}

.section-image:hover {
  transform: translateY(-4px);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.disclaimer-box {
  background-color: #FFF9F5;
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  margin: 40px 0;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
}

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

footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 44px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-section h3 {
  color: var(--text-light);
  border-bottom: 2px solid var(--accent-brown);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section a {
  color: var(--border-light);
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
}

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

.footer-section p {
  font-size: 14px;
  color: var(--border-light);
  margin-bottom: 8px;
}

.disclaimer-footer {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--accent-brown);
  font-size: 13px;
  color: var(--border-light);
  font-weight: 700;
}

.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.35s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button:hover {
  background-color: var(--accent-brown);
  border-color: var(--accent-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 43, 31, 0.2);
}

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

.button-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.35s ease;
}

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

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

form {
  max-width: 600px;
  margin: 40px 0;
}

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

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(61, 43, 31, 0.1);
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(61, 43, 31, 0.2);
}

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

.product-content {
  padding: 24px;
}

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

.product-content p {
  font-size: 14px;
  margin-bottom: 16px;
}

.product-card .button {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 24px 44px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

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

.cookie-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-message a {
  color: var(--text-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.35s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: var(--accent-brown);
  color: var(--text-light);
}

.cookie-accept:hover {
  background-color: #4A3C32;
}

.cookie-reject {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

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

.page-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 44px;
  line-height: 1.8;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

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

.page-content a {
  font-weight: 700;
  color: var(--primary-color);
}

.page-content a:hover {
  color: var(--accent-brown);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    padding: 12px 20px;
  }

  nav {
    width: 100%;
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  nav a {
    margin-left: 0;
    font-size: 12px;
    padding: 6px 12px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-section:nth-child(even) {
    direction: ltr;
  }

  .section-image {
    max-width: 100%;
  }

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

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

  .cookie-banner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }

  .page-content {
    padding: 0 20px;
  }
}
