.dropdown-menu {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  background-color: #161616;
  color: white;
}

.subtitle-text {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: #E3B25A;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 2rem;
}

.promotions-container {
  margin-bottom: 4rem;
}

.card-plain {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  border: 1px solid #E3B25A;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-blog {
  position: relative;
  padding: 1.5rem;
  border-bottom: 1px solid #E3B25A;
}

.promotion-image-container {
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.blur-shadow-image {
  position: relative;
  overflow: hidden;
}

.blur-shadow-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blur-shadow-image:hover img {
  transform: scale(1.05);
}

.promotion-category {
  color: #E3B25A;
  font-weight: 600;
  letter-spacing: 1px;
}

.contest-status-badge {
  padding: 6px 16px;
  font-size: 0.85rem;
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.contest-status-badge.open {
  background-color: #1a1a1a;
  color: #E3B25A;
  border: 1px solid #E3B25A;
}

.contest-status-badge.closed {
  background-color: #1a1a1a;
  color: #d9534f;
  border: 1px solid #d9534f;
}

.promotion-title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.promotion-title:hover {
  color: #E3B25A;
}

.promotion-description {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-link {
  color: #E3B25A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #fff;
  text-decoration: underline;
}

.title-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.title-link:hover {
  color: #E3B25A;
  text-decoration: none;
}

.author {
  color: #aaa;
  font-size: 0.9rem;
}

.author-link {
  color: #E3B25A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-link:hover {
  color: #fff;
  text-decoration: underline;
}

.intro-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #EDB115, #F4C430);
  margin: 2rem auto;
  border-radius: 2px;
}

/* FLYER STYLES */
.flyer-wrapper {
  width: 77%;
  margin: 0 auto;
  max-width: 1600px;
}

.flyer-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  width: 100%;
}

.flyer-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-height: 400px;
}

.flyer-container:hover .flyer-image {
  transform: scale(1.02);
}

.flyer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
}

.flyer-content {
  padding: 2rem;
  color: white;
  max-width: 50%;
}

.flyer-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.flyer-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .promotion-title {
    font-size: 1.5rem;
  }

  .flyer-content {
    max-width: 70%;
  }

  .flyer-wrapper {
    width: 90%;
  }

  .flyer-content h3 {
    font-size: 1.8rem;
  }

  .flyer-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .subtitle-text {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .blur-shadow-image img {
    height: 250px;
  }

  .flyer-wrapper {
    width: 95%;
  }

  .flyer-container {
    max-height: 300px;
    margin: 2rem 0;
  }

  .flyer-content {
    max-width: 85%;
    padding: 1.2rem;
  }

  .flyer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .flyer-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .flyer-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.2) 100%);
  }
}

@media (max-width: 576px) {
  .flyer-container {
    max-height: 250px;
    margin: 1.5rem 0;
  }

  .flyer-content {
    max-width: 90%;
    padding: 1rem;
  }

  .flyer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .flyer-content p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .flyer-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.3) 100%);
  }
}

@media (max-width: 480px) {
  .flyer-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .flyer-content p {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .flyer-container {
    max-height: 220px;
  }
}
