:root {
  --primary-color: #882426;
  --secondary-color: #cdbea7;
  --dark-color: #323030;
  --accent-color: #c29545;
}
a {
  text-decoration: none;
}
ul,
ol,
ul,
li {
  list-style: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--dark-color);
  color: var(--secondary-color);
  line-height: 1.6;
}
body,
html {
  overflow-x: hidden;
}

.header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: relative;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.header__logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.header__item {
  position: relative;
}

.header__link {
  color: var(--secondary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  display: block;
}

.header__link:hover {
  color: var(--accent-color);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-link {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(205, 190, 167, 0.1);
  transition: background-color 0.3s;
}

.header__dropdown-link:hover {
  background-color: rgba(205, 190, 167, 0.1);
  color: var(--accent-color);
}

.header__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.header__toggle-bar {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.header__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__mobile-item {
  border-bottom: 1px solid rgba(205, 190, 167, 0.1);
}

.header__mobile-link {
  display: block;
  padding: 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  transition: background-color 0.3s;
  position: relative;
}

.header__mobile-link:hover {
  background-color: rgba(205, 190, 167, 0.1);
  color: var(--accent-color);
}

.header__mobile-item--dropdown {
  position: relative;
}

.header__mobile-link--dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__mobile-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.header__mobile-item--dropdown.active .header__mobile-arrow {
  transform: rotate(180deg);
}

.header__mobile-submenu {
  background-color: rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.header__mobile-item--dropdown.active .header__mobile-submenu {
  max-height: 200px;
}

.header__mobile-sublink {
  display: block;
  padding: 0.8rem 2rem;
  color: var(--secondary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(205, 190, 167, 0.05);
  transition: background-color 0.3s;
}

.header__mobile-sublink:hover {
  background-color: rgba(205, 190, 167, 0.1);
  color: var(--accent-color);
}

.header__toggle.active .header__toggle-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.header__toggle.active .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle.active .header__toggle-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.demo-content {
  padding: 2rem;
  text-align: center;
}

.demo-content h2 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.demo-content p {
  color: var(--secondary-color);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .header__menu {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__logo {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  .header__mobile-menu {
    display: none;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide--1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./assets/img1.avif");
}

.hero__slide--2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./assets/img2.avif");
}

.hero__slide--3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./assets/img3.avif");
}

.hero__content {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  z-index: 10;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about {
  padding: 8rem 0;
  background-color: var(--secondary-color);
}

.about__content {
  color: var(--dark-color);
}

.about__subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about__text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about__image {
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 10px;
}

.services {
  padding: 8rem 0;
  background-color: var(--dark-color);
}

.services__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--accent-color);
}

.services__item {
  text-align: center;
  margin-bottom: 3rem;
}

.services__emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services__text {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.stats {
  padding: 6rem 0;
  background-color: var(--primary-color);
}

.stats__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--secondary-color);
}

.stats__item {
  text-align: center;
  margin-bottom: 2rem;
}

.stats__number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
}

.stats__text {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.quote {
  padding: 6rem 0;
  background-color: var(--accent-color);
  text-align: center;
}

.quote__text {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--dark-color);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.features__item {
  min-height: 60vh;
  display: flex;
}

.features__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.features__image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.features__item:nth-child(odd) {
  background-color: var(--primary-color);
}

.features__item:nth-child(even) {
  background-color: var(--secondary-color);
  flex-direction: row-reverse;
}

.features__item:nth-child(even) .features__text {
  color: var(--dark-color);
}

.features__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.features__description {
  font-size: 1.1rem;
  line-height: 1.8;
}

.gallery {
  padding: 8rem 0;
  background-color: var(--dark-color);
}

.gallery__header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.gallery__title {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.gallery__text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.gallery__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.gallery__image {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.gallery__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-color);
}

.gallery__content:nth-child(even) {
  background-color: var(--secondary-color);
}

.gallery__content:nth-child(even) .gallery__content-title {
  color: var(--primary-color);
}

.gallery__content:nth-child(even) .gallery__content-text {
  color: var(--dark-color);
}

.gallery__content-title {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.gallery__content-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
}

.info {
  padding: 8rem 0;
  background-color: var(--secondary-color);
}

.info__header {
  text-align: center;
  margin-bottom: 4rem;
}

.info__title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.info__subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.info__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.info__column-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info__column-text {
  color: var(--dark-color);
}

.info__footer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.contact {
  padding: 8rem 0;
  background-color: var(--dark-color);
}

.contact__info {
  color: var(--secondary-color);
}

.contact__title {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.contact__item {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact__form {
  background-color: var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
}

.contact__form-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.form-control {
  background-color: rgba(205, 190, 167, 0.1);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.form-control:focus {
  background-color: rgba(205, 190, 167, 0.2);
  border-color: var(--accent-color);
  color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(194, 149, 69, 0.25);
}

.form-control::placeholder {
  color: rgba(205, 190, 167, 0.7);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.8rem 2rem;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #a67c38;
  border-color: #a67c38;
}

.footer {
  background-color: var(--primary-color);
  padding: 3rem 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__text {
  color: var(--secondary-color);
  font-size: 1rem;
  max-width: 500px;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--accent-color);
}

.notification {
  position: fixed;
  top: 20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 1rem 2rem;
  border-radius: 5px;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.notification.show {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__content {
    left: 2rem;
    bottom: 2rem;
  }

  .features__item {
    flex-direction: column !important;
    min-height: auto;
  }

  .features__text {
    padding: 2rem;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .gallery__content {
    padding: 2rem;
    text-align: center;
  }

  .gallery__image {
    min-height: 250px;
  }

  .info__columns {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.blog {
  padding: 8rem 0;
  background-color: var(--secondary-color);
}

.blog__header {
  text-align: center;
  margin-bottom: 5rem;
}

.blog__subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog__title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.blog__description {
  font-size: 1.2rem;
  color: var(--dark-color);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.blog__card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog__card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.blog__card-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
}

.blog__card-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog__card-content {
  padding: 2rem;
}

.blog__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog__card-excerpt {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.blog__card-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.blog__card-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.blog__card-author-name {
  font-size: 0.95rem;
  color: var(--dark-color);
  font-weight: 500;
}

.blog__card-readtime {
  font-size: 0.9rem;
  color: #888;
}

.blog__cta {
  text-align: center;
}

.blog__button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog__button:hover {
  background-color: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(136, 36, 38, 0.3);
}

.blog__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(136, 36, 38, 0.8),
    rgba(194, 149, 69, 0.8)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog__card:hover .blog__card-image::before {
  opacity: 1;
}

.blog__card-image::after {
  content: "Czytaj więcej";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.blog__card:hover .blog__card-image::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .blog {
    padding: 4rem 0;
  }

  .blog__title {
    font-size: 2.2rem;
  }

  .blog__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog__card-content {
    padding: 1.5rem;
  }

  .blog__card-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.article-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="500" viewBox="0 0 1200 500"><rect width="1200" height="500" fill="%23882426"/><text x="600" y="250" text-anchor="middle" dominant-baseline="middle" fill="%23cdbea7" font-size="24" font-family="Arial">Business Event Planning</text></svg>');
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  text-align: center;
}

.article-hero__category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-hero__title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-hero__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.article-hero__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-hero__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.article-hero__author-info {
  text-align: left;
}

.article-hero__author-name {
  font-weight: bold;
  color: var(--secondary-color);
}

.article-hero__date {
  color: var(--secondary-color);
  opacity: 0.8;
}

.article-hero__readtime {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.article-content {
  padding: 6rem 0;
  background-color: #fff;
}

.article-content__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-content h2 {
  font-size: 2.2rem;
  color: var(--dark-color);
  margin: 3rem 0 1.5rem;
  font-weight: bold;
}

.article-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 2.5rem 0 1rem;
  font-weight: bold;
}

.article-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.article-content blockquote {
  background-color: var(--secondary-color);
  border-left: 5px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.article-content__highlight {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  font-weight: 500;
}

.article-content__tip {
  background-color: #f8f9fa;
  border: 1px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.article-content__tip-title {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.article-share {
  background-color: var(--secondary-color);
  padding: 3rem 0;
}

.article-share__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.article-share__title {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.article-share__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-share__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
}

.article-share__button--facebook {
  background-color: #1877f2;
  color: white;
}

.article-share__button--twitter {
  background-color: #1da1f2;
  color: white;
}

.article-share__button--linkedin {
  background-color: #0077b5;
  color: white;
}

.article-share__button--email {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.article-share__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.related-articles {
  padding: 6rem 0;
  background-color: var(--dark-color);
}

.related-articles__title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 3rem;
}

.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-article {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.related-article:hover {
  transform: translateY(-5px);
}

.related-article__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.related-article__content {
  padding: 1.5rem;
}

.related-article__title {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.related-article__excerpt {
  color: #666;
  font-size: 0.95rem;
}

.article-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  padding: 4rem 0;
  text-align: center;
}

.article-cta__title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}

.article-cta__text {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.article-cta__button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.article-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .features__image {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
  }
}
.photo-gallery {
            padding: 10px 0;
            background-color: var(--dark-color);
            overflow: hidden;
        }

        .photo-gallery__container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            min-height: 300px;
        }

        .photo-gallery__item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
        }

        .photo-gallery__image {
            width: 100%;
            height: 100%;
            max-height: 300px;
            max-width: 300px;
            background-size: contain;
            background-position: center;
            transition: transform 0.5s ease;
            background-repeat: no-repeat;
        }

        .photo-gallery__overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(136, 36, 38, 0.8), rgba(194, 149, 69, 0.6));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .photo-gallery__title {
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .photo-gallery__description {
            color: var(--secondary-color);
            font-size: 1rem;
            text-align: center;
            opacity: 0.9;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }

      
        /* Responsive Design */
        @media (max-width: 1200px) {
            .photo-gallery__container {
                height: 50vh;
                min-height: 350px;
            }

            .photo-gallery__title {
                font-size: 1.3rem;
            }

            .photo-gallery__description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .photo-gallery__container {
                grid-template-columns: 1fr;
                height: auto;
            }

            .photo-gallery__item {
                height: 250px;
            }

            .photo-gallery__title {
                font-size: 1.4rem;
            }

            .photo-gallery__description {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .photo-gallery__item {
                height: 200px;
            }

            .photo-gallery__title {
                font-size: 1.2rem;
            }

            .photo-gallery__description {
                font-size: 0.9rem;
            }
        }
