/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #4a3b40;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Grid Layout */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/* Flexbox */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.5rem;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* Text Styles */
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 700;
  font-size: 1.5rem;
}
.font-sans {
  font-family: 'Inter', sans-serif;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-800 {
  color: #1f2937;
}
.text-white {
  color: #fff;
}
.text-a26275 {
  color: #336b1a;
}
.text-green-600 {
  color: #10b981;
}

/* Backgrounds */
.bg-white {
  background-color: #ffffff;
}
.bg-pink-50 {
  background-color: #bb9657;
}
.bg-footer {
  background-color: #473119;
}
.bg-\[\#f1cea7\]{--tw-bg-opacity:1;
background-color:rgb(95 53 0 / 63% / var(--tw-bg-opacity, 1))}

.bg-[#fcefe3] {
  background-color: #fcefe3;
}
.bg-[#336b1a] {
  background-color: #336b1a;
}
.bg-[#214d0d] {
  background-color: #214d0d;
}
.bg-[#d6c1bc] {
  background-color: #d6c1bc;
}

/* Borders */
.border-l-4 {
  border-left-width: 4px;
}
.border-gray-200 {
  border-color: #e5e7eb;
}
.border-gray-300 {
  border-color: #d1d5db;
}
.border-pink-200 {
  border-color: #fcefe3;
}
.border-a26275 {
  border-color: #336b1a;
}

/* Padding & Margin */
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-6-b {
  padding: 1.5rem;
  background: #f0f8ff00;
}
/* Padding X */
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Padding Y */
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-16 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mt-8 {
  margin-top: 2rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

/* Rounded */
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}

/* Transitions */
.transition {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 1px 2px 1px rgb(59 32 7);
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
}

/* Transform */
.transform {
  transform: translateZ(0);
}
.translate-y-0\.5 {
  transform: translateY(-0.125rem);
}
.hover\:-translate-y-0\.5:hover {
  transform: translateY(-0.125rem);
}
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}
.hover\:scale-105:hover {
  transform: scale(1.05);
}
.hover\:scale-110:hover {
  transform: scale(1.1);
}
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}
.group:hover .group-hover\:-translate-y-1 {
  transform: translateY(-0.25rem);
}
.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

/* Hover Effects */
.hover\:bg-a26275-darker:hover {
  background-color: #214d0d;
}
.hover\:text-pink-500:hover {
  color: #ec4899;
}
.hover\:bg-a26275:hover {
  background-color: #37b300;
}
.bg-37b300 {
  background-color: #37b300;
}
.hover\:bg-a26275-lighter:hover {
  background-color: #d6c1bc;
}
.hover\:text-white:hover {
  color: #ffffff;
}

/* Forms */
input,
textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #336b1a;
  box-shadow: 0 0 0 2px rgba(162, 98, 117, 0.2);
}

button {
  cursor: pointer;
}

/* Sections */
section {
  position: relative;
  z-index: 10;
}

/* Custom Gradients */
.from-a26275 {
  background-image: linear-gradient(to right, #336b1a, #d6c1bc);
}
.to-a256275 {
  background-image: linear-gradient(to left, #336b1a, #d6c1bc);
}

.bg-gradient-to-br-from-f1cea7-via-white-to-pink-200 {
  background-image: linear-gradient(to bottom right, #f1cea7, white, #fde6e9);
}

/* Icons */
.h-5 {
  height: 1.25rem;
}
.w-5 {
  width: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.w-6 {
  width: 1.5rem;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Buttons */
button,
a.button {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

button:hover,
a.button:hover {
  opacity: 0.9;
}

/* Form Submit Button */
button[type="submit"] {
  background-color: #a55c0c;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}

button[type="submit"]:hover {
  background-color: #6f3b01;
}

/* Contact Info */
.contacts-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid #fcd3e1;
  padding-top: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.contacts-row svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: #336b1a;
}

/* Footer */
footer {
  background-color: #f1cea7;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Responsive Design */
  .md\:w-1\/2 {
    background-color: rgba(87, 40, 14, 0.56);
    padding: 1.5rem;
    border-radius: 20px;
  }
@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:text-2xl {
    font-size: 1.5rem !important;
  }
  .md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .md\:mb-0 {
    margin-bottom: 0 !important;
  }
  .md\:w-1\/2 {
    width: 60% !important;
    background-color: rgba(87, 40, 14, 0.56);
    padding: 1.5rem;
    border-radius: 20px;
  }
  .md\:hidden {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
}
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: #4b5563;
  font-size: 1rem;
}
.mobile-menu.show {
  display: block;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
}

/* Form Fields */
input:focus,
textarea:focus {
  border-color: #336b1a;
  box-shadow: 0 0 0 2px rgba(162, 98, 117, 0.2);
}

/* Gallery Images */
.gallery-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* Product Cards */
.product-card {
  background-color: #ffffff;
  border-left: 4px solid #336b1a;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Features Section */
.feature-card {
  background-color: #fef2f7;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: #336b1a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.feature-icon-wrapper:hover {
  transform: scale(1.1);
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #ffffff;
}

/* Delivery Blocks */
.delivery-payment-block {
  background-color: #f1cea7;
  padding: 1.5rem;
  border-left: 4px solid #336b1a;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}
.delivery-payment-block:hover {
  transform: translateX(0.25rem);
}

/* Submit Message */
.thanks-message {
  text-align: center;
  padding: 1.5rem;
  color: #10b981;
  font-size: 1.125rem;
}

/* Header */
.header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #336b1a;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom right, #f1cea7, #ffffff, #fde6e9);
  padding: 4rem 0;
}
.hero-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
}
.hero-buttons a:first-child {
  background-color: #336b1a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.hero-buttons a:last-child {
  border: 1px solid #336b1a;
  color: #336b1a;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.hero-buttons a:last-child:hover {
  background-color: #336b1a;
  color: white;
}

/* Image Styles */
img:not(.logo-img) {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
img:hover:not(.logo-img) {
  transform: scale(1.05);
}

.logo-img {
    width: 100pt;
}

.top-background-img {
/*    background-image: url('/images/background.png');*/
    background-size: cover;
    background-position: center center;
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.delivery-background-img {
    background-image: url(/images/delivery.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 15rem;
    padding-bottom: 15rem;
}

/* Border Colors */
.border-a26275 {
  border-color: #336b1a;
}

/* Opacity */
.opacity-5 {
  opacity: 0.05;
}

/* Fixed BG Texture */
.fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('https://www.transparenttextures.com/patterns/rough-diagonal-stitches.png'); 
}

/* Focus Rings */
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(162, 98, 117, 0.2);
}

.focus\:outline-none:focus {
  outline: none;
}

/* Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Z-Index */
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.relative {
  position: relative;
}

/* Max Width */
.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Rounded Full */
.rounded-full {
  border-radius: 9999px;
}

/* Text Align */
.text-center {
  text-align: center;
}

/* Space Y */
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}

/* Display None / Hidden */
.hidden {
  display: none;
}

/* Typography */
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}


/* Цвета фона */
.bg-a26275 {
  background-color: #336b1a;
}


/* Цвета при наведении */
.hover-bg-8f5767:hover {
  background-color: #214d0d;
}

/* Анимация при наведении: поднятие кнопки на 0.125rem (2px) */
.hover-translate-y-0\.5:hover {
  transform: translateY(-0.125rem);
}

.focus\:outline-none:focus{outline:2px solid transparent;
}

.w-12{width:3rem;
}

.h-12{height:3rem;
}

.p-2{padding:0.5rem;
}

.transition-transform{
    transition-property:transform;
    transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration:150ms;
}

.md\:grid-cols-3{
    grid-template-columns:repeat(3, minmax(0, 1fr))
}

.md\:text-3xl{
    font-size:xx-large;
    line-height:2.25rem;
    padding-bottom: 5rem;
}

.md\:text-3x2{
    font-size:xx-large;
    line-height:2.25rem;
}

.mx-auto{
    margin-left:auto;
    margin-right:auto;
}

@media (min-width: 640px){.sm\:grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}

@media (min-width: 1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}

.overflow-hidden{overflow:hidden}

.hover\:-translate-y-1:hover{--tw-translate-y:-0.25rem;
transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}

.bg-\[\#336b1a\]{--tw-bg-opacity:1;
background-color:rgb(162 98 117 / var(--tw-bg-opacity, 1))}

.group:hover .group-hover\:text-yellow-100{--tw-text-opacity:1;
color:rgb(254 249 195 / var(--tw-text-opacity, 1))}

.w-full{width:100%}

.h-56{height:14rem}

.object-cover{object-fit:cover}

.max-w-4xl{max-width:56rem}

.border-\[\#336b1a\]{--tw-border-opacity:1;
border-color:rgb(162 98 117 / var(--tw-border-opacity, 1))}

.focus\:border-\[\#336b1a\]:focus{--tw-border-opacity:1;
border-color:rgb(162 98 117 / var(--tw-border-opacity, 1))}

.list-disc{list-style-type:disc}

.border-t{border-top-width:1px}

.text-\[\#336b1a\]{--tw-text-opacity:1;
color:rgb(162 98 117 / var(--tw-text-opacity, 1))}

.text-price{
    color: rgb(255, 255, 255);
    padding: 1.2rem;
    background: linear-gradient(0.25turn, rgba(255, 0, 0, 0) 1%, rgb(97 47 17 / 64%) 20%, rgb(97 47 17 / 64%) 80%, rgba(255, 0, 0, 0) 99%);
}

@media (min-width: 768px) {
.text-price{
    color: rgb(255, 255, 255);
    display: inline-block;
    padding: 1.2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    background: linear-gradient(0.25turn, rgba(255, 0, 0, 0) 1%, rgb(97 47 17 / 64%) 20%, rgb(97 47 17 / 64%) 80%, rgba(255, 0, 0, 0) 99%);
}
}

.flex-col {
    flex-direction: inherit;
}

.block {
    display: block;
}

.transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.bg-form {
    background: repeating-linear-gradient(320deg, #9d75591c, #f5d19808 10px, #ad4f050a 10px, #af5b1426 20px);
    box-shadow: 0 10px 15px 9px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px 9px rgba(0, 0, 0, 0.1);
    padding: inherit;
    border-radius: 0.5rem;
}

.font-1rem {
  font-size: 1rem;
}

.stroke-shadow {
	color: #fef3c7;
	text-shadow: -2px 0 #111827, 0 -2px #111827, 2px 0 #111827, 0 2px #111827, 2px 2px #111827, -2px -2px #111827, -2px 2px #111827, 2px -2px #111827, 5px 4px #8d4e18;
	text-transform: uppercase;
    line-height: 4rem;
}

@media (min-width: 768px) {
.stroke-shadow {
	color: #fef3c7;
	text-shadow: -2px 0 #111827, 0 -2px #111827, 2px 0 #111827, 0 2px #111827, 2px 2px #111827, -2px -2px #111827, -2px 2px #111827, 2px -2px #111827, 7px 5px #8d4e18;
	text-transform: uppercase;
    font-size: 4rem;
    letter-spacing: 4pt;
    line-height: 4rem;
}
}

.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #76430e0d 50%, #ffffff 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:6s;
}

.bg3 {
  animation-duration:10s;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

/* Tabs / Buttons */
.gap-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem;
}

.bg-\[#a26275\] {
  background-color: #a26275;
}

.bg-\[#f1cea7\] {
  background-color: #f1cea7;
}

.text-\[#a26275\] {
  color: #a26275;
}

.hover\:bg-\[#d6c1bc\]:hover {
  background-color: #d6c1bc;
}


/* Product Content Container */
.bg-gradient-to-br-from-\#f1cea7-via-white-to-pink-100 {
  background-image: linear-gradient(to bottom right, #f1cea7, #ffffff, #fde6e9);
}

.min-h-\[300px\] {
  min-height: 300px;
}

.text-sm {
  font-size: 0.875rem;
}

.list-none li {
  list-style-type: none;
}

/* Selected Category Button */
.selected-category {
  background-color: #a26275;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-d9d9d9 {
    color: #d9d9d9;
}

.bg-874014 {
    color: aliceblue;
    background-color: rgba(87, 40, 14, 0.56);
}

.pad-10 {
    padding-bottom: 10pt;
}

.pad-20 {
    padding-bottom: 20pt;
}

.button-b-up {
    font-size: large;
    text-transform: uppercase;
}

.text-about {
    text-align: justify;
    font: caption;
    font-variant: small-caps;
}

p {
  margin-bottom: 0 }
p + p {
  text-indent: 1.5em;
  margin-top: 0 }
.text-underline {
    text-decoration: underline;
    font-weight: bolder;
}
.svg-backg {
    padding-top: 10%;
    padding-bottom: 10%;
background: url("data:image/svg+xml;utf8,<svg  version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 508 508' xml:space='preserve' style='opacity: 40%;'><g class='hand1'>	<path class='st0' d='M328.4,354c0,2.8-0.4,6-2.4,7.6c-4.8,4.8-12.8,5.2-18,0.4l-2.8-2.4c3.6,3.2,3.6,8.8,0.4,12.4l-8.8,8.8		c-3.2,3.2-8.8,3.2-12,0l-5.6-5.6c3.6,3.6,3.6,10,0,13.2l-4.8,4.4c-3.6,3.2-9.2,3.2-12.8,0l-4.4-4.4c2.4,2.4,2.4,6.4,0,8.8l-4.8,4.8		c-2.4,2.4-6.4,2.4-8.8,0l-11.2-6c0,0-0.4,0-0.8-0.4l-4-11.6c-0.8-2.4,0-5.2,1.6-6.8c3.6-3.6,3.6-8.8,0-12.4l-5.2-5.2		c-3.2-3.2-8-3.6-11.6-0.8l-3.2,2.8l4.4-4.4c4.4-4,4.4-10.8,0-15.2l-4-4c-4.4-4.4-10.8-4.4-15.2,0l-5.2,5.2c3.6-3.6,3.6-9.6,0-13.2		l-6.4-6.4c-3.6-3.6-9.2-3.6-12.8-0.4l-15.6,13.6l0,0c2-2.8,1.6-6.4-0.4-8.8l-4.8-4.8c-2.8-2.8-6.8-2.8-9.6,0l-0.8,0.8		c-4-3.6-7.6-6.4-10.4-9.2l37.2-86.4c10.8,0,30.4-0.8,45.6-10c12.8-8,29.6-4.8,37.6,7.2c-1.6,0.8-3.2,1.6-4.8,2.4		c-10.4,6.8-23.6,11.2-34,14c-8.4,2.4-14.4,9.6-15.2,18.4c-0.4,8.8-2.8,18-4.8,24c-1.6,4.8,0.4,9.6,4.8,12.4c2.4,1.2,4.8,2,7.6,2		c3.6,0,6.8-1.2,9.6-3.6c9.6-8.4,23.2-21.6,22-27.6c0,0,12.8,2,15.6-1.2c0,0,63.2,48.8,78,78.4l0,0		C327.2,344.8,328.4,349.6,328.4,354z' fill='rgb(249, 181, 76)'/>	<g>		<path class='st1' d='M380.8,316.8c-12.4,8-51.2,32.4-53.6,27.2c-15.2-29.6-78.4-78-78.4-78c-2.8,3.2-15.6,1.2-15.6,1.2			c1.2,6-12.4,19.6-22,27.6c-2.8,2.4-6,3.6-9.6,3.6c-2.4,0-5.2-0.8-7.6-2c-4.4-2.4-6-7.6-4.8-12.4c2-6,4.4-15.2,4.8-24			c0.4-8.8,6.8-16,15.2-18.4c10.4-2.8,23.6-7.6,34-14c10-6.4,22.4-7.2,33.2-2c15.2,7.6,38.4,14,65.6,2.4L380.8,316.8z' fill='rgb(255, 208, 91)'/>		<path class='st1' d='M229.2,376.8c3.6-3.6,3.6-8.8,0-12.4l-5.2-5.2c-3.2-3.2-8-3.2-11.6-0.8l-3.2,2.8l4.4-4.4c4-4,4-11.2,0-15.2			l-4-4c-4-4-10.8-4-15.2,0l-5.2,4.8c3.6-3.6,3.6-9.6,0-13.2l-6.4-6.4c-3.6-3.6-9.2-3.6-12.8-0.4l-16,14.4c2.8-2.8,2.8-6.8,0-9.6			l-4.8-4.8c-2.8-2.8-6.8-2.8-9.6,0L134,328c0.4,18.4,17.2,14.4,17.2,14.4c-1.2,22.4,24,21.2,24,21.2c-4.4,24,25.2,20,25.2,20			C201.2,402,232,396,232,396l-4-12.4C226.8,381.2,227.2,378.4,229.2,376.8z' fill='rgb(255, 208, 91)'/>	</g>	<g>		<path class='st2' d='M153.2,332.8l-0.8,1.2c-2,2.4-5.6,2.4-7.6,0.4L142,332c-2.4-2-2.4-5.6-0.4-7.6l0.8-1.2c2-2.4,5.6-2.4,7.6-0.4			l2.8,2.4C154.8,326.8,155.2,330.4,153.2,332.8z' fill='rgb(255, 255, 255)'/>		<path class='st2' d='M189.2,336.4l-1.6,1.6c-2.8,3.2-7.2,3.6-10.4,0.8l-3.6-3.2c-3.2-2.8-3.6-7.2-0.8-10.4l1.2-1.6			c2.8-3.2,7.2-3.6,10.4-0.8l3.6,3.2C191.2,328.8,191.6,333.2,189.2,336.4z' fill='rgb(255, 255, 255)'/>		<path class='st2' d='M213.6,350.4l-1.2,1.6c-2.8,3.2-7.2,3.6-10.4,0.8l-3.6-3.2c-3.2-2.8-3.6-7.2-0.8-10.4l1.2-1.6			c2.8-3.2,7.2-3.6,10.4-0.8l3.6,3.2C216,342.8,216.4,347.6,213.6,350.4z' fill='rgb(255, 255, 255)'/>		<path class='st2' d='M228,368.8l-1.2,1.2c-2,2.4-6,2.8-8.4,0.8l-3.2-2.4c-2.4-2-2.8-6-0.8-8.4l1.2-1.2c2-2.4,6-2.8,8.4-0.8			l3.2,2.4C229.6,362.4,230,366.4,228,368.8z' fill='rgb(255, 255, 255)'/>		<path class='st2' d='M201.6,282.8l4-10c1.2-3.2-0.4-6.8-4-8l-7.6-2c-0.8,8-2.8,16-4.8,21.6c-0.4,1.2-0.4,2.8-0.4,4			C194,290,199.6,287.6,201.6,282.8z' fill='rgb(255, 255, 255)'/>		<polygon class='st2' points='413.2,319.2 386.8,330.8 339.2,219.6 359.2,209.6 		' fill='rgb(255, 255, 255)'/>	</g>	<path class='st3' d='M508,254c0-44.4-11.2-86-31.2-122l-125.6,61.6l72.4,147.2l80.4-42C506.4,284,508,269.2,508,254z' fill='rgb(65, 66, 71)'/>	<polygon class='st2' points='168.8,219.6 121.2,330.8 94.8,319.2 148.8,209.6 	' fill='rgb(255, 255, 255)'/>	<path class='st3' d='M0,254c0,15.2,1.6,30,4,44.4l80.4,42l72.4-147.2L31.2,132C11.2,168,0,209.6,0,254z' fill='rgb(65, 66, 71)'/>	<g>		<circle class='st4' cx='437.6' cy='300' r='12' fill='rgb(39, 40, 43)'/>		<circle class='st4' cx='468' cy='283.6' r='12' fill='rgb(39, 40, 43)'/>		<circle class='st4' cx='68' cy='304' r='12' fill='rgb(39, 40, 43)'/>		<circle class='st4' cx='37.6' cy='287.6' r='12' fill='rgb(39, 40, 43)'/>	</g></g></svg>");
    background-position-x: center;
    background-position-y: center;
    background-size: initial;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: #ffe38552;

}

/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 500px;
  color: white;
}

/* Карусель как фон */
.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* затемнение для читаемости текста */
}

/* Текст поверх */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100pt;
  display: flex;
  align-items: center;
}

/* Тени для текста */
.drop-shadow-lg {
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}
.drop-shadow-md {
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Кнопки */

.hover\:bg-\[#8f5767\]:hover {
  background-color: #8f5767;
}
.border-white {
  border: 1px solid white;
}

.hover\:bg-white:hover {
  background-color: white;
}
.hover\:text-\[#a26275\]:hover {
  color: #a26275;
}

/* Flex */

.flex-row {
  flex-direction: row;
}
.justify-start {
  justify-content: flex-start;
}

/* Transition */

.transition-all {
  transition: all 0.3s ease;
}
