.home-container {
  width: 100%;
  display: flex;
  flex-direction: column;

  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 95%,
    rgba(39, 39, 39, 1) 98%,
    rgba(78, 78, 78, 1) 100%
  );
}

@keyframes header-pulse {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #ffff0017;
  }
  100% {
    background-color: transparent;
  }
}

.heading-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.heading-text-container h1,
.heading-text-container h3 {
  width: 95%;
  min-height: 10rem;
  margin: 0 auto;
  position: relative;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: header-pulse 2s infinite;
}

.heading-text-container span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid yellow;
}

.heading-text-container span em {
  width: 16px;
  height: 16px;
  position: absolute;
  background-color: black;
  border: 2px solid yellow;
}

.heading-text-container span em:first-child {
  left: -8px;
  top: -8px;
}
.heading-text-container span em:nth-child(2) {
  right: -8px;
  top: -8px;
}
.heading-text-container span em:nth-child(3) {
  left: -8px;
  bottom: -8px;
}
.heading-text-container span em:last-child {
  right: -8px;
  bottom: -8px;
}

.tickets-container {
  margin-top: 3rem;
  padding: 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}

.tickets-wrapper {
  display: flex;
}

.model-ticket {
  position: relative;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.model-ticket a {
  text-decoration: none;
  color: white;
}

.model-ticket.visible {
  opacity: 1;
  transform: translateY(0);
}

.ticket-overlay {
  width: 100%;
  position: absolute;
  bottom: 13px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.233);
  z-index: 2;
  display: block;
}

.ticket-overlay > a {
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
}

.home-news-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background-color: #711750;
}

.home-news-headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-news-headers h3 {
  font-family: 'Courier New', Courier, monospace;
  margin: 5rem 0 1rem 0;
  font-size: 2.5rem;
  text-align: center;
}

.home-news-headers p {
  font-family: 'Courier New', Courier, monospace;
  padding: 0 2rem;
  font-size: 1.4rem;
  text-align: center;
  color: white;
}

.ticket-contacts-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.ticket-phone {
  height: 48px;
  background: linear-gradient(to bottom, #ffeb3bb0, #ffc107a8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  width: 100%;
  flex: 4;
  text-decoration: none;
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
}

.ticket-msg {
  width: 48px;
  height: 48px;
}

.model-name-container {
  display: flex;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 2rem;
}

.scroll-text-container {
  position: relative;
  display: flex;
  color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('../assets/images/dark-bananas.webp');
}

.scroll-text-container::before {
  content: '▼';
  position: absolute;
  top: 440px;
  right: 10px;
  font-size: 1.2rem;
  color: #fcfcfc;
}

.scroll-text-container::after {
  content: '▼';
  position: absolute;
  top: 440px;
  left: 10px;
  font-size: 1.2rem;
  color: #fcfcfc;
}

.scroll-text-container :is(h1, h2, h3, h4, h5) {
  color: white;
}

.scroll-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  text-align: center;
}

.scroll-content a {
  color: white;
}

.scroll-content .header-like {
  font-size: 2rem;
  font-weight: 600;
}

.scroll-content p {
  line-height: 1.3rem;
  letter-spacing: 1px;
  word-spacing: 3px;
  font-size: 1.4rem;
}

.scroll-content h1 {
  font-size: 2rem;
  font-weight: 600;
}

.scroll-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
}

.scroll-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.scroll-content h4 {
  font-size: 1.7rem;
  font-weight: 500;
}
/* styles for scroll bar */
.scroll-content {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #fcfcfc #000000;
}

/* Chrome, Edge, and Safari */
.scroll-content::-webkit-scrollbar {
  width: 10px;
}

.scroll-content::-webkit-scrollbar-track {
  background: #000000;
}

.scroll-content::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
  border: 3px solid #000000;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* styles for scroll bar end*/

/* animations */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports not (animation-timeline: view()) {
  .model-ticket {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------MEDIA------------------------ */

@media (501px <= width <= 1000px) {
  .heading-text-container h1,
  .heading-text-container h3 {
    width: 85%;
    min-height: 8rem;
  }

  .tickets-container {
    width: 70%;
  }

  .scroll-content {
    width: 90%;
    border-radius: 10px;
  }

  .scroll-text-container::before {
    content: '';
  }

  .scroll-text-container::after {
    content: '';
  }
}

@media (1001px <= width <= 4000px) {
  .heading-text-container {
    min-width: 55rem;
  }

  .heading-text-container h1,
  .heading-text-container h3 {
    width: 70%;
    min-height: 8rem;
  }

  .tickets-container {
    padding: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
    width: 70%;
  }

  .ticket-phone {
    font-size: 1.6rem;
  }

  .scroll-content {
    width: 90%;
    border-radius: 10px;
  }

  .scroll-text-container::before {
    content: '';
  }

  .scroll-text-container::after {
    content: '';
  }
}
