/**
 * Plovdiv Display Font Helper Classes
 * Работи само с налични тежести: Light (300), Regular (400), Bold (700)
 */

/* Font Weight Classes */
.font-light {
  font-weight: 300 !important;
}

.font-regular {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 700 !important; /* Използва Bold вместо Medium */
}

.font-semibold {
  font-weight: 700 !important; /* Използва Bold вместо SemiBold */
}

.font-bold {
  font-weight: 700 !important;
}

/* Heading Overrides with Plovdiv Display */
h1, .h1 {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 400; /* Regular - по-леко за по-добра четимост */
  line-height: 1.2;
}

h2, .h2 {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 700; /* Bold (вместо SemiBold) */
}

h3, .h3 {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 700; /* Bold (вместо SemiBold) */
}

h4, .h4 {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 400; /* Regular (вместо Medium) */
}

h5, .h5 {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 400; /* Regular (вместо Medium) */
}

h6, .h6 {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 400; /* Regular */
}

/* Hero title специфични настройки */
.bd-hero-title {
  font-weight: 400 !important; /* Regular вместо Bold */
  line-height: 1.15 !important; /* По-компактен line-height */
}

/* Hero title размери - намалени за Plovdiv Display */
@media only screen and (min-width: 1400px) {
  .bd-hero-title {
    font-size: 48px !important; /* Намалено от 60px */
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-hero-title {
    font-size: 44px !important; /* Намалено от 55px */
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-hero-title {
    font-size: 40px !important; /* Намалено от 50px */
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-hero-title {
    font-size: 32px !important; /* Намалено от 35px */
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-hero-title {
    font-size: 28px !important; /* Намалено от 30px */
  }
}

@media (max-width: 575px) {
  .bd-hero-title {
    font-size: 26px !important; /* Намалено от 30px */
  }
}

.bd-hero-title i {
  font-weight: 300; /* Light за italic подзаглавие */
  font-style: italic;
  opacity: 0.95;
  font-size: 0.85em; /* 85% от основния размер */
}

/* Hero content span (подзаглавие) */
.bd-hero-content span {
  font-weight: 400 !important; /* Regular вместо SemiBold */
  font-size: 24px !important; /* Намалено от 30px */
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .bd-hero-content span {
    font-size: 16px !important; /* Намалено от 18px */
  }
}

/* Button text - Bold for better readability */
.bd-btn,
button,
.btn {
  font-family: 'Plovdiv Display', sans-serif;
  font-weight: 700; /* Bold (вместо SemiBold) */
}

/* Light text for subtle elements */
.text-light-weight {
  font-weight: 300;
}

/* Strong emphasis */
strong, b {
  font-weight: 700;
}
