:root {
  --primary-color: #09090f;
  --secondary-color: #16213e;

  --accent-color: #e6b250;
  --accent-color-2: #e94560;
  --text-color: #f9f9f9;
}

body {
  background-color: var(--primary-color);
  color: var(--text-color);
  font-family: "Raleway", sans-serif;
}

section {
  margin-bottom: 2.5rem;
}

a {
  color: var(--accent-color-2);
  text-decoration: none;

  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 4rem;
}

.list-style {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-style li {
  padding: 0.5rem;
}

.section-style {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--secondary-color);
  border-radius: 25px;

  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(12, 17, 53, 0.9);
}

.section-button {
  border-radius: 10px;
  padding: 0.7rem;

  color: var(--text-color);
  cursor: pointer;

  transition: all 0.3s ease-in-out;
  background: transparent;
  border: 2px solid var(--accent-color);

  margin: 1rem;
}

.section-button:hover {
  background-color: var(--accent-color-2);
  box-shadow: 0 4px 12px rgba(135, 26, 26, 0.9);
  border: 2px solid var(--accent-color-2);
  transform: translateY(-2px);
}

.text-row {
  display: block;
  font-style: italic;
}

.content-divider {
  border: none;
  height: 5px;
  background-color: var(--accent-color);
  margin: 3rem 0;
  opacity: 0.85;
  border-radius: 3px;
  max-width: 100%;
}

.hero-section__title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  padding-top: 2rem;

  max-width: 50vw;
}

.hero-main {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1),
      rgba(0, 0, 0, 0)
    ),
    url("/assets/hero_main.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;

  margin-top: 2.5rem;
  border-radius: 25px;
}

.description-section {
  font-size: 1.3rem;
}

.description-section__text {
  line-height: 1.5;
}

.page-section {
  font-size: 1.3rem;
}

/* Table */

.table-style {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: sans-serif;
  font-size: 1.2rem;

  margin-bottom: 2.5rem;
}

.table-section h2 {
  font-size: 2.5rem;
}

.table-style th,
.table-style td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--accent-color-2);
}

.table-style thead {
  background-color: var(--accent-color-2);
  font-weight: bold;
}

.live-section {
  display: flex;
  flex-direction: row;

  margin-bottom: 2.5rem;
  border-radius: 25px;
  background-color: var(--secondary-color);
  padding-right: 0;
}

.live-section__text {
  font-size: 1.3rem;
}

.live-section__img {
  width: 70%;
}

.live-section__img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 0 25px 25px 0;
}

/* Feedback */

.feedback {
  padding: 3rem 1rem;
  background: none;
  color: var(--text-color);

  margin-bottom: 2.5rem;
}

.feedback__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
}

.feedback__description {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.6;
  color: var(--text-color);
}

.feedback__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  justify-content: center;
  align-items: center;
}

.feedback__item {
  background: #1e1e1e;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  font-size: 1.3rem;
  line-height: 1.5;
  position: relative;
  border-left: 4px solid var(--accent-color-2);
  color: #f1f1f1;
  transition: transform 0.2s ease, 0.3s ease;

  max-width: fit-content;
}

.feedback__item:hover {
  transform: translateY(-4px);
  background-color: #2a2a2a;
}

.feedback__item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 90%;
  margin-left: -10px;
  border-top: 10px solid #1e1e1e;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

/* Ending */

.ending-section {
  padding: 3rem 1rem;

  text-align: center;
}

.ending-section__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ending-section p {
  font-size: 1.2rem;

  margin-bottom: 2rem;
}

.ending-section__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ending-section__list li {
  background-color: #1e1e1e;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #9b5de5;
  color: #f1f1f1;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease, transform 0.2s ease;
}

.ending-section__list li:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

.ending-section__link {
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  color: var(--text-color);
}

.ending-section__link:hover {
  background-color: var(--accent-color-2);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 26, 26, 0.9);
}

@media (max-width: 1000px) {
  .container {
    max-width: 100%;
    padding-inline: 1rem;
  }

  .hero-section__title {
    font-size: 3rem;
  }

  .live-section {
    display: flex;
    flex-direction: column;
  }

  .live-section__text {
    font-size: 1.3rem;
  }

  .live-section__img {
    width: 100%;
  }

  .live-section__img img {
    width: 100%;
    max-height: 40vh;

    object-fit: cover;
    object-position: 100% 30%;
    border-radius: 10px;
  }
}

@media (max-width: 500px) {
  .content-divider {
    margin: 2rem 0;
    height: 3px;
  }
  .hero-section__title {
    font-size: 2rem;
  }

  .hero-main {
    height: 70vh;
  }

  .description-section {
    font-size: 1rem;
  }

  .page-section {
    font-size: 1rem;
  }

  .ending-section__title {
    font-size: 2rem;
  }

  .table-style {
    font-size: 0.9rem;
  }

  .table-section h2 {
    font-size: 1.5rem;
  }

  .live-section__text {
    font-size: 1rem;
  }

  .feedback__title {
    font-size: 1.5rem;
  }

  .feedback__description {
    font-size: 1rem;
  }

  .feedback__item {
    font-size: 1rem;
  }

  .ending-section__list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .hero-section__title {
    font-size: 1.5rem;
  }
}
