/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Ubuntu+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

:root {
  --primary: #134a0b;
  --light: #F8F4E3;
  --dark: #112e0c;
  --bg-color: #F9FAFB;
  --primary-light: #142d65;
  --secondary: #efffee;
  --text-dark: #333;
  --text-light: #777;
  --white: #fff;
  --border-light: #e5e7eb;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #c6c6c6;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}
.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #134a0b;
  font-size: 32px;
  text-align: center;
}

header h2 {
  /* color: #134a0b; */
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #134a0b;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #134a0b;
  color: #fff;
  padding: 8px 0;
  background: #134a0b;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #134a0b;
}

#declineBtn {
  background-color: #fff;
  color: #134a0b;
}

#declineBtn:hover {
  background-color: #134a0b;
  color: #fff;
}

/* Footer Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  color: white;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 21px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

@media (max-width: 578px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .burger {
    display: flex;
  }

  .nav-active {
    display: flex;
  }
}

hr {
  margin: 1rem 0;
  border: 1px solid #134a0b;

}


@media (max-width: 768px) {
  .display-3 {
    font-size: 34px;
  }
}



/* Стилі для футера */
.footer-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0 1rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-link i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 3rem 0 1rem;
  }
  
  .footer-title {
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
  }
}

/* Додаємо стилі для іконок Bootstrap Icons (замість класів bi-*) */
/* Оскільки в HTML використовуються класи Bootstrap Icons, додаємо базові стилі для них */
[class^="bi-"], 
[class*=" bi-"] {
  display: inline-block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Маппінг іконок Bootstrap на Material Icons */
.bi-shield::before {
  content: "security";
}

.bi-file-text::before {
  content: "description";
}

.bi-info-circle::before {
  content: "info";
}

.bi-people::before {
  content: "people";
}

.bi-house::before {
  content: "home";
}

.bi-newspaper::before {
  content: "article";
}

.bi-envelope::before, 
.bi-envelope-fill::before {
  content: "email";
}

.bi-geo-alt-fill::before {
  content: "location_on";
}

.bi-telephone-fill::before {
  content: "phone";
}
/* new styles  */

/* Загальні стилі */

body {
  color: var(--text-dark);
  background-color: var(--bg-color);
}

/* Стилі для блоку Hero */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 74, 11, 0.6);
  z-index: 1;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-hero {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary);
  border: none;
  color: var(--white);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
}
/* Стилі для блоку "Про нас" */
.about-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-card.overlap {
  margin-top: -4rem;
  margin-left: -3rem;
  position: relative;
}

.text-block {
  margin-bottom: 2rem;
}

.text-block-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.text-block-content {
  color: var(--text-light);
  line-height: 1.7;
}

/* Стилі для блоку "Чому варто читати наші блоги" */
.features-section {
  padding: 7rem 0;
  background-color: var(--secondary);
}

.feature-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--white);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon .material-icons {
  font-size: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Стилі для блоку "Популярні теми" */
.topics-section {
  padding: 7rem 0;
  background-color: var(--bg-color);
}

.topic-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--primary);
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.topic-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.topic-count {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Стилі для блоку "Останні статті" */
.articles-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.article-card {
  margin-bottom: 2rem;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.article-img-wrapper {
  height: 410px;
  overflow: hidden;
}

.article-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img {
  transform: scale(1.05);
}

.article-content {
  padding: 2rem;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.article-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.article-meta-icon {
  font-size: 18px;
  margin-right: 0.5rem;
}

@media (max-width: 992px) {
  .about-card.overlap {
    margin-top: 2rem;
    margin-left: 0;
  }
}
/* Стилі для блоку "Відгуки читачів" */
.testimonials-section {
  padding: 7rem 0;
  background-color: var(--light);
}

.testimonial-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 100%;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  color: var(--primary);
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Стилі для блоку "Як почати вести Особисті блоги про навчання" */
.steps-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.step-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-image-wrapper {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.step-card:hover .step-image {
  transform: scale(1.05);
}

/* Стилі для блоку "Переваги ведення навчального блогу" */
.benefits-section {
  padding: 7rem 0;
  background-color: var(--secondary);
}

.benefit-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.benefit-text {
  color: var(--text-light);
  line-height: 1.7;
}

/* Стилі для блоку "Наша місія" */
.mission-section {
  padding: 7rem 0;
  background-color: var(--bg-color);
}

.mission-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.mission-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 8px 8px 0 0;
}

.mission-paragraph {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-paragraph:last-child {
  margin-bottom: 0;
}

/* Стилі для блоку "Команда" */
.team-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.team-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.team-text {
  flex: 1;
  padding-right: 2rem;
}

.team-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.team-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-image:hover {
  transform: scale(1.03);
}

.team-paragraph {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Стилі для блоку "Наші цінності" */
.values-section {
  padding: 7rem 0;
  background-color: var(--secondary);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-item {
  background-color: var(--white);
  margin-bottom: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: var(--box-shadow);
}

.value-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 50%;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.value-content {
  flex-grow: 1;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.value-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
  .team-content {
    flex-direction: column;
  }
  
  .team-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
  }
  
  .value-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
/* Стилі для блоку "Топ блогів тижня" */
.top-blogs-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.blog-ranking-card {
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-ranking-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.blog-ranking-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.blog-description {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-stats {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-stats-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.blog-stats-icon {
  font-size: 18px;
  margin-right: 0.5rem;
}

.btn-more {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary);
  border: none;
  color: var(--white);
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-more:hover {
  background-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-more .material-icons {
  margin-left: 0.5rem;
  font-size: 1.25rem;
}

/* Стилі для блоку "Анонси подій" */
.events-section {
  padding: 7rem 0;
  background-color: var(--bg-color);
}

.event-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.event-img-wrapper {
  height: 330px;
  overflow: hidden;
  position: relative;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.event-content {
  padding: 2rem;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.event-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.event-detail {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.event-detail-icon {
  color: var(--primary);
  margin-right: 0.5rem;
}

.event-seats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--light);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.event-seats-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.event-seats-indicator {
  height: 8px;
  flex-grow: 1;
  margin: 0 1rem;
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.event-seats-filled {
  height: 100%;
  background-color: var(--primary);
  border-radius: 4px;
}

/* Стилі для блоку "Головні новини" */
.news-section {
  padding: 7rem 0;
  background-color: var(--secondary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.news-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.news-card-with-image {
  grid-column: span 2;
}

.news-card-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex-grow: 1;
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.news-date .material-icons {
  font-size: 18px;
  margin-right: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.news-card-with-image .news-title {
  font-size: 1.5rem;
}

.news-text {
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
}

.news-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card-with-image {
    grid-column: span 1;
  }
}
/* Стилі для блоку "Головний екран Blog" */
.blog-hero-section {
  margin-top: 50px;
  padding: 8rem 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(19, 74, 11, 0.05) 0%, rgba(19, 74, 11, 0.02) 100%);
  z-index: 0;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.blog-hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.blog-hero-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.blog-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero-decorator {
  position: absolute;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(19, 74, 11, 0.03);
  z-index: 0;
  user-select: none;
}

.blog-hero-decorator-1 {
  top: -2rem;
  left: 5%;
}

.blog-hero-decorator-2 {
  bottom: -6rem;
  right: 5%;
}

@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 3.5rem;
  }
  
  .blog-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .blog-hero-decorator {
    font-size: 10rem;
  }
}

@media (max-width: 576px) {
  .blog-hero-title {
    font-size: 2.5rem;
  }
  
  .blog-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .blog-hero-decorator {
    display: none;
  }
}
/* Стилі для блоку "Контактна інформація" */
.contact-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.contact-info-wrapper {
  margin-bottom: 3rem;
}

.contact-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-icon .material-icons {
  font-size: 24px;
}

.contact-info-content {
  flex-grow: 1;
}

.contact-info-label {
  font-weight: 600;
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info-value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--dark);
  text-decoration: underline;
}

.contact-map-wrapper {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Стилі для блоку "Форма заявки" */
.contact-form-section {
  padding: 7rem 0;
  background-color: var(--secondary);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--border-light);
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.form-floating label {
  padding: 1rem 0.75rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Анімація для форми */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

.wow.fadeIn[data-wow-delay="0.3s"] {
  animation-delay: 0.3s;
}

.wow.fadeIn[data-wow-delay="0.6s"] {
  animation-delay: 0.6s;
}

.wow.fadeIn[data-wow-delay="0.9s"] {
  animation-delay: 0.9s;
}
