/* ===== HERO ===== */
.cultural-hero {
  background: linear-gradient(
    rgba(107,15,26,0.85),
    rgba(107,15,26,0.85)
  ),
  url("https://images.unsplash.com/photo-1519682337058-a94d519337bc");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 110px 20px;
  color: #fff;
}

.cultural-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cultural-hero p {
  color: #f4c430;
  font-size: 16px;
}

/* ===== SECTION ===== */
.cultural-section {
  max-width: 900px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  gap: 30px;
}

/* ===== CARD ===== */
.cultural-card {
  background: #fff;
  padding: 34px 28px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cultural-card h2 {
  color: #6b0f1a;
  margin-bottom: 10px;
}

.cultural-card p {
  line-height: 1.8;
  font-size: 15px;
}

.cultural-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===== HIGHLIGHT ===== */
.cultural-card.highlight {
  background: #6b0f1a;
  color: #fff;
}

.cultural-card.highlight h2 {
  color: #f4c430;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cultural-hero h1 {
    font-size: 26px;
  }
}
.has-dropdown.open .dropdown-panel {
  display: block;
}

.arrow {
  transition: transform 0.3s ease;
}

.has-dropdown.open .arrow {
  transform: rotate(180deg);
}


@media (max-width: 900px) {
  
  #mainNav {
    display: none; 
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%; 
    left: 0;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  #mainNav.active {
    display: block; 
  }

  /* Force the list to be VERTICAL */
  #mainNav ul {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #mainNav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fdf5e6; 
  }

  #mainNav ul li a {
    display: block;
    padding: 15px 20px;
    color: #6b0f1a; 
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s;
  }

  #mainNav ul li a:hover {
    background: #fff7da; /
  }

 
  .dropdown-panel {
    position: static !important; 
    display: none;
    background: #fffcf0;
    width: 100%;
    box-shadow: none !important;
  }

  .has-dropdown.open .dropdown-panel {
    display: block !important;
  }
}