:root {
  --festivals-primary: #c62828; /* đỏ truyền thống */
  --festivals-secondary: #f9a825; /* vàng tươi */
  --festivals-bg: #fff8e1; /* nền dịu nhẹ */
  --festivals-accent-bg: #fce4ec; /* nền nhẹ cho section nổi bật */
  --festivals-text: #333;
  --festivals-font-headline: 'Playfair Display', serif;
  --festivals-font-body: 'Roboto', sans-serif;
}

.festivals-page-wrapper {
  background-color: var(--festivals-bg);
  color: var(--festivals-text);
  font-family: var(--festivals-font-body);
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero__content {
  position: relative;
  color: white;
  z-index: 1;
}

.hero__title {
  font-family: var(--festivals-font-headline);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn--primary {
  background-color: var(--festivals-primary);
  color: white;
}

.btn--primary:hover {
  background-color: #b71c1c;
}

.btn--light {
  background-color: white;
  color: var(--festivals-primary);
  border: 2px solid var(--festivals-primary);
}

.btn--light:hover {
  background-color: var(--festivals-primary);
  color: white;
}

/* FEATURE SECTION */
.feature-section {
  padding: 80px 0;
}

.feature-section__container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.feature-section__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.feature-section__image-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-section__content {
  flex: 1;
  min-width: 300px;
}

.feature-section__content h2 {
  font-family: var(--festivals-font-headline);
  color: var(--festivals-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-section__content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.activity-list {
  list-style: disc inside;
  margin-bottom: 1rem;
}

.feature-section--reverse .feature-section__container {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .feature-section__container {
    flex-direction: column;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }
}

/* timeline */
.timeline-section {
    position: relative;
    padding: 50px 20px;
    color: white;
}

.timeline-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.timeline-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.timeline-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.timeline-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.timeline-month {
    background: #ffd54f;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.timeline-month.active,
.timeline-month:hover {
    background: #f57c00;
    color: white;
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.month-events {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event-card {
    background: white;
    color: black;
    width: 230px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.event-info {
    padding: 10px;
}

.event-date {
    font-size: 0.85rem;
    color: #555;
}

.event-title {
    font-size: 1rem;
    font-weight: bold;
}


body {
      background: #fffdf6;
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      color: #3b3b3b;
    }

    .hero-newyear {
      background-image: url('https://upload.wikimedia.org/wikipedia/commons/d/db/Fireworks_T%C3%A9t.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      padding: 100px 20px;
      text-align: center;
      color: white;
    }

    .hero-newyear::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(190, 0, 0, 0.7);
      z-index: 0;
    }

    .hero-newyear .content {
      position: relative;
      z-index: 1;
    }

    .hero-newyear h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #fff176;
    }

    .hero-newyear p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .section-newyear {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      align-items: center;
      gap: 40px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section-newyear img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .section-newyear h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #d32f2f;
      margin-bottom: 1rem;
    }

    .highlight-box {
      width: 100%;
      background: #fff3e0;
      padding: 30px;
      border-radius: 12px;
    }

    .highlight-box ul {
      padding-left: 20px;
    }

    .cta {
      text-align: center;
      padding: 40px 20px;
    }

    .cta a {
      background: #d32f2f;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .cta a:hover {
      background: #b71c1c;
    }