/* ===== Hero Section ===== */
.hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 270px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: url("../../images/hero-bg.jpg") left top / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transform: translateZ(0);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  font-size: 3rem;
  letter-spacing: 1.2px;
  margin: 0;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  padding: 3px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.btn-hero {
  background: #b6894b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.btn-hero:hover {
  background-color: #d2aa67;
}

/* если нужна невидимая заглушка-кнопка */
.btn-hero-no {
  visibility: hidden;
  background: transparent;
  color: #2c1b0c;
  padding: 0.75rem 1.5rem;
}
