@import url("https://fonts.googleapis.com/css2?family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --orange: #f25a06;
  --orange-hover: #c41824;
  --heading-font: "Trirong", serif;
  --rule-line-left: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  list-style-type: none;
}

section,
footer {
  overflow-x: hidden;
}

body {
  height: 100vh;
  background: #fafafa;
}

header {
  z-index: 999;
  background-color: rgba(56, 54, 54, 0.6);
}

.fixtures-hero {
  background-image: url("../assets/bg.jpeg");
  text-align: center;
}

.fixtures-hero h1 {
  padding-top: 120px;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.fixtures-hero p {
  font-size: 1.2rem;
  font-style: italic;
  color: #f5f5f5;
}

.fixtures-hero h2 {
  font-size: 1.6rem;
  padding: 20px;
  color: var(--orange-hover);
  margin-top: 10px;
}

#countdown {
  font-size: 1.8rem;
  padding: 10px;
  font-weight: bold;
  color: #f5f5f5;
}

@media (max-width: 480px) {
  .fixtures-hero p {
    font-size: 1rem;
  }

  .fixtures-hero h1 {
    font-size: 2rem;
  }
}

/* ------------------ FAQs ------------------ */
.fixture-faq {
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
}

.fixture-faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2c3e50;
  font-family: 'Poppins', sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.faq-question {
  background: #fdfdfd;
  color: #333;
  font-size: 1.1rem;
  width: 100%;
  padding: 16px 20px 16px 50px; 
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  transition: background 0.3s ease;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  background: #f7f7f7;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(180deg, var(--orange), #e67e22);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 1rem;
  padding: 12px 0;
  color: var(--orange);
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
  .fixture-faq {
    padding: 0 15px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 16px 14px 46px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

.visual-divider {
  position: relative;
  height: 100px;
  background: linear-gradient(135deg, var(--orange-hover) 60%, #fafafa 60%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* ------------------ Notify ------------------ */
.notify-section {
  padding: 60px 20px;
  text-align: center;
  margin-top: 80px;
}

.notify-section h2 {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.notify-section h2 i {
  font-size: 1.8rem;
  color: var(--orange);
  animation: bell-ring 1.5s infinite ease-in-out;
  transform-origin: top center;
}

@keyframes bell-ring {
  0% { transform: rotate(0); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-12deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-6deg); }
  75% { transform: rotate(4deg); }
  100% { transform: rotate(0); }
}

.notify-section p {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 25px;
  padding: 0 10px;
}

.notify-btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--orange-hover);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.notify-btn:hover {
  background-color: var(--orange);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .notify-section h2 {
    font-size: 1.6rem;
  }

  .notify-section p {
    font-size: 1rem;
  }

  .notify-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
