/* HERO SECTION */
.hero {
  padding: 180px 0;
  min-height: 627px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(114, 47, 55, 0.12) 50%, rgba(90, 45, 74, 0.15) 100%),
    linear-gradient(to bottom, rgba(139, 90, 60, 0.05), rgba(114, 47, 55, 0.08)),
    url('/img/vineyard-hero.jpg') center/cover no-repeat fixed;
}

.hero__vine-leaf {
  position: absolute;
  font-size: 500px;
  opacity: 0.03;
}

.hero__vine-leaf--left {
  top: -150px;
  left: -200px;
  transform: rotate(45deg);
}

.hero__vine-leaf--right {
  bottom: -150px;
  right: -200px;
  transform: rotate(-45deg);
}

.hero__title {
  font-size: 60px;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero__subtitle {
  font-size: 22px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 300;
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.hero__description {
  font-size: 15px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
  font-family: var(--font-sans);
}

.hero__btn {
  margin-top: 25px;
}

.hero__image-wrapper {
  perspective: 1000px;
  animation: floating 7s ease-in-out infinite;
}

.hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #6b3a52 0%, #5a2d4a 50%, #3c1f2c 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 80px;
  opacity: 0.95;
}

.vine-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.1) 35px,
    rgba(255, 255, 255, 0.1) 70px
  );
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
