.bansko-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bansko-hero--small { min-height: 320px; }
.bansko-hero--medium { min-height: 480px; }
.bansko-hero--large { min-height: 680px; }
.bansko-hero--fullscreen { min-height: 100vh; }

.bansko-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
}

.bansko-hero .container {
  position: relative;
  z-index: 2;
}

.bansko-hero h1 {
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.bansko-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.bansko-hero__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #fff;
  color: #0E3A5A;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.bansko-hero__buttons a:hover {
  background: #0E3A5A;
  color: #fff;
}
.bansko-hero__title{
    font-family: "Cormorant Garamond", serif;
    font-weight:500;
    font-size:clamp(52px,5vw,74px);
    line-height:1.05;
    letter-spacing:0;
    color:#fff;
    margin-bottom:1.2rem;
}
/* ==========================================
   HERO ACTION BUTTONS
========================================== */

.bansko-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 28px;
}

.bansko-hero__actions .field,
.bansko-hero__actions .field__item {
  display: contents;
}

.bansko-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 13px 24px;

  border: 1px solid #b28a45;
  border-radius: 999px;

  background: #b28a45;
  color: #fff !important;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bansko-hero__actions a:hover,
.bansko-hero__actions a:focus-visible {
  background: #9f783d;
  border-color: #9f783d;
  color: #fff !important;

  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.3);
}

/* Вторият бутон */
.bansko-hero__actions .field:nth-child(2) a,
.bansko-hero__actions > .field__item:nth-child(2) a,
.bansko-hero__actions > a:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff !important;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.bansko-hero__actions .field:nth-child(2) a:hover,
.bansko-hero__actions .field:nth-child(2) a:focus-visible,
.bansko-hero__actions > .field__item:nth-child(2) a:hover,
.bansko-hero__actions > .field__item:nth-child(2) a:focus-visible,
.bansko-hero__actions > a:nth-of-type(2):hover,
.bansko-hero__actions > a:nth-of-type(2):focus-visible {
  background: #fff;
  border-color: #fff;
  color: #103c5c !important;
}

@media (max-width: 620px) {
  .bansko-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .bansko-hero__actions .field,
  .bansko-hero__actions .field__item,
  .bansko-hero__actions a {
    width: min(100%, 320px);
  }
}