
.hero[data-v-25f081df] {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-bg[data-v-25f081df] {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img[data-v-25f081df] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0.5;
}
.hero-overlay[data-v-25f081df] {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 42, 32, 0.85) 0%,
    rgba(58, 42, 32, 0.6) 50%,
    rgba(58, 42, 32, 0.8) 100%
  );
}
.hero-content[data-v-25f081df] {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 0 80px;
  animation: fadeInUp-25f081df 1s ease;
}
@keyframes fadeInUp-25f081df {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.hero-badge[data-v-25f081df] {
  display: inline-block;
  background: rgba(196, 148, 72, 0.15);
  border: 1px solid var(--color-gold);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  animation: fadeInUp-25f081df 1s ease 0.2s both;
}
.hero-badge span[data-v-25f081df] {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 2px;
}
.hero-title[data-v-25f081df] {
  margin-bottom: 25px;
  animation: fadeInUp-25f081df 1s ease 0.3s both;
}
.title-main[data-v-25f081df] {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  line-height: 1.1;
}
.title-main span[data-v-25f081df] {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle[data-v-25f081df] {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-text-light-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.8;
  animation: fadeInUp-25f081df 1s ease 0.4s both;
}
.hero-buttons[data-v-25f081df] {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp-25f081df 1s ease 0.5s both;
}
.hero-buttons .btn[data-v-25f081df] {
  gap: 10px;
}
.hero-buttons .btn-secondary[data-v-25f081df] {
  background: transparent;
  color: #c49448;
  border: 1px solid #c49448;
}
.hero-buttons .btn-secondary[data-v-25f081df]:hover {
  background: #c49448;
  color: var(--color-white);
}
.scroll-indicator[data-v-25f081df] {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce-25f081df 2s infinite;
}
@keyframes bounce-25f081df {
0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
}
40% {
    transform: translateX(-50%) translateY(-10px);
}
60% {
    transform: translateX(-50%) translateY(-5px);
}
}
.scroll-indicator span[data-v-25f081df] {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
}
.scroll-line[data-v-25f081df] {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}
@media (max-width: 768px) {
.hero-buttons[data-v-25f081df] {
    flex-direction: column;
}
.hero-buttons .btn[data-v-25f081df] {
    width: 100%;
}
.scroll-indicator[data-v-25f081df] {
    display: none;
}
}
