@import url("https://fonts.googleapis.com/css2?family=Kanit: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");
nav {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 12px 0;
  position: fixed;
  top: 15px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: wrap;
  overflow: hidden;
}
nav.expanded {
  padding: 12px 0 20px 0;
}
nav .nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
nav .nav-links li {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
nav .nav-links li img {
  border-radius: 50%;
  max-height: 40px;
  display: block;
}
nav .nav-links a {
  color: #ececec;
  text-decoration: none;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav .nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .nav-links a:hover {
  color: white;
}
nav .nav-links a:hover::after {
  width: 100%;
  left: 0;
}
nav .nav-links a:has(img)::after {
  display: none;
}
nav .expanded-menu-items {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .expanded-menu-items li {
  display: flex;
  align-items: center;
  width: 100%;
}
nav .expanded-menu-items li a {
  color: #ececec;
  text-decoration: none;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.05);
  gap: 10px;
}
nav .expanded-menu-items li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(2px);
}
nav .expanded-menu-items li a.premium-mobile {
  background: linear-gradient(135deg, #daa520, #ffd700, #ffec8b);
  color: #2a2a2a;
  box-shadow: 0 0 8px rgba(218, 165, 32, 0.4);
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav .expanded-menu-items li a.premium-mobile span {
  color: #2a2a2a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
nav .expanded-menu-items li a.premium-mobile .premium-icon {
  color: #2a2a2a;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
nav .expanded-menu-items li a.premium-mobile:hover {
  transform: translateX(2px) translateY(-1px);
}
nav .expanded-menu-items li a.premium-mobile:hover .premium-icon {
  transform: scale(1.1) rotate(10deg);
}
nav .expanded-menu-items li a.premium-mobile:hover span {
  color: #2a2a2a;
}
nav .expanded-menu-items li a.invite-mobile {
  background: rgb(0, 140, 255);
  color: white;
  box-shadow: 0 0 8px rgba(0, 140, 255, 0.4);
}
nav .expanded-menu-items li a.invite-mobile span {
  color: white;
}
nav .expanded-menu-items li a.invite-mobile .icon {
  color: white;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
nav .expanded-menu-items li a.invite-mobile:hover {
  transform: translateX(2px) translateY(-1px);
}
nav .expanded-menu-items li a.invite-mobile:hover .icon {
  rotate: -30deg;
  transform: translateX(1px);
}
nav .expanded-menu-items li a.invite-mobile:hover span {
  color: white;
}
nav .expanded-menu-items.show {
  max-height: 400px;
  opacity: 1;
  margin-top: 15px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .menu-icon {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
}
nav #checkbox {
  display: none;
}
nav .toggle {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.5s;
}
nav .bars {
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 4px;
}
nav #bar2 {
  transition-duration: 0.3s;
}
nav #bar1, nav #bar2, nav #bar3 {
  width: 100%;
}
nav #checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
nav .premium-btn {
  margin-right: 15px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: linear-gradient(135deg, #daa520, #ffd700, #ffec8b);
  box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav .premium-btn:hover {
  transform: translateY(-1px);
}
nav .premium-btn:active {
  transform: translateY(1px);
}
nav .premium-btn span {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
nav .premium-btn span::after {
  content: "";
  display: block;
  height: 2px;
  background: #2a2a2a;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .premium-btn:hover span::after {
  width: 100%;
  left: 0;
}
nav .premium-btn .premium-icon {
  color: #2a2a2a;
  width: 22px;
  height: 22px;
  transition: all 0.5s ease;
  text-decoration: none;
  z-index: 2;
}
nav .premium-btn:hover .premium-icon {
  transform: scale(1.2) rotate(15deg);
}
nav .premium-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 1;
}
nav .premium-btn:hover::before {
  animation: shine 1.4s ease;
}
nav .premium-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
nav .premium-btn:hover::after {
  opacity: 1;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.6);
  }
  100% {
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  }
}
nav .invite {
  margin-left: auto;
  margin-right: 25px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 15px rgba(0, 140, 255, 0.5);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
nav .invite:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.6);
}
nav .invite:active {
  transform: translateY(1px);
}
nav .invite span {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  position: relative;
}
nav .invite span::after {
  content: "";
  display: block;
  height: 2px;
  background: white;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .invite:hover span::after {
  width: 100%;
  left: 0;
}
nav .invite .icon {
  color: white;
  width: 24px;
  height: 24px;
  transition: all 0.5s ease;
  text-decoration: none;
}
nav .invite:hover .icon {
  rotate: -50deg;
  transform: translateX(1px);
}
nav .invite::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.3;
}
nav .invite:hover::before {
  animation: shine 1.5s ease;
}
@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

@media (max-width: 1000px) {
  nav .nav-links .menu-item {
    display: none;
  }
  nav .invite, nav .premium-btn {
    display: none !important;
  }
  nav .menu-icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    right: 20px;
    position: absolute;
    top: 16px;
  }
}
*, html {
  scroll-behavior: smooth;
}

.spacer {
  aspect-ratio: 900/300;
  width: 100%;
  height: 150vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  position: absolute;
  margin-top: -500px;
}

.layer1 {
  background-image: url("media/supportsplash.svg");
}

@media (max-height: 700px) {
  .spacer {
    height: 200vh;
  }
}
head .icon {
  border-radius: 2vh;
  width: 32px;
  height: 32px;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #303030;
  display: flex; /* This control of the display and when it turns off is contrtolled in the fadeinanimationfrontpage.js */
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.dots {
  display: flex;
  gap: 9vw; /* Space between circles */
}

.dot {
  width: 3rem;
  height: 3rem;
  background-color: #e76969;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
@media (max-width: 400px) {
  #loading-screen .dots {
    gap: 15vw;
  }
  #loading-screen .dot {
    width: 2.5rem;
    height: 2.5rem;
  }
}
main {
  /* Dropdown Arrow */
  /* Keep faq-title and help-title centered, adjust font size */
}
main .faq-title {
  position: relative;
  max-width: 90%;
  font-weight: 410;
  font-size: 1.9em;
  color: #ffffff;
  margin: 0 auto;
  text-align: center;
}
main .questions-container {
  margin-top: 25px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
main .question {
  margin-bottom: 15px;
  width: 50vw;
  border-radius: 100px;
  color: #303030;
  background-color: #303030;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.5s ease;
  position: relative; /* Enable positioning for the arrow */
}
main .question-title {
  cursor: pointer;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between; /* Push arrow to the right */
  margin-left: 0px; /* set to 60px to bring back question icon */
}
main .question-title p {
  font-size: 1.4em;
  color: #e76969;
  line-height: 1.5;
  transition: all 0.5s ease;
}
main .question-title p::after {
  content: ""; /* Create the underline */
  display: block; /* Block-level element for full width */
  height: 3px; /* Thickness of the underline */
  background: rgb(92, 92, 92); /* Color of the underline */
  position: absolute; /* Position it absolutely under the text */
  left: 50%; /* Start from the middle of the element */
  bottom: -1px; /* Adjust to place it just under the text */
  width: 0; /* Initially width is 0 (hidden) */
  transition: width 0.6s ease, left 0.6s ease; /* Animate width and position */
}
main .question.open .question-title p::after {
  width: 100%; /* Expand to full width when open */
  left: 0; /* Move to the left edge */
}
main .question.open .question-title p {
  font-size: 1.35em;
}
main .question-icon {
  position: absolute;
  left: 25px;
  top: 20px;
  transform: scaleX(-1);
  display: none; /* Disabled as of now */
  width: 25px;
  height: 25px;
  background: url("media/question.svg") no-repeat center center;
  background-size: contain;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
main .question.open .question-icon {
  transform: scaleX(-1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
main .dropdown-arrow {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #e76969;
  transition: transform 0.5s ease;
}
main .question.open .dropdown-arrow {
  transform: rotate(180deg);
}
main .question-answer {
  max-height: 0; /* Initially hidden */
  overflow: hidden; /* Hide overflow content */
  transition: max-height 0.3s ease; /* Smooth transition */
  position: relative;
  top: 0; /* Resets the space when the question is open */
}
main .question-answer a {
  color: inherit; /* Matches the surrounding text color */
  text-decoration: none; /* Removes default underline */
  position: relative; /* Position relative to place pseudo-element */
  color: #e76969;
}
main .question-answer a::after {
  content: ""; /* Create an empty content for the pseudo-element */
  display: block; /* Make it a block-level element */
  height: 2px; /* Height of the line */
  background: white; /* Color of the line */
  position: absolute; /* Position it absolutely */
  left: 50%; /* Start from the middle of the link */
  bottom: -1px; /* Position below the link */
  width: 0; /* Start with a width of 0 */
  transition: width 0.5s ease, left 0.5s ease; /* Animate width and position */
}
main .question-answer a:hover::after {
  width: 100%; /* Expand to full width on hover */
  left: 0; /* Move to the left */
}
main .question.open .question-answer {
  transition: max-height 0.3s ease; /* Ensure smooth transition for both opening and closing */
}
main p {
  position: relative;
  margin: 0 auto;
  align-items: center;
  color: #9e9e9e;
  font-size: 1.1em;
  text-align: left !important; /* Align text to the left */
  line-height: 1.5;
}
main .help-title {
  position: relative;
  max-width: 90%;
  margin-top: 40px;
  margin-bottom: 0px;
  font-weight: 410;
  font-size: 1.9em;
  color: #ffffff;
  text-align: center;
}
main .logo {
  margin-right: 30px;
}
main .logo-container {
  display: flex;
  border-radius: 10px;
  justify-content: center; /* Center the items horizontally */
  align-items: center; /* Center the items vertically */
  max-width: 90%;
  margin: 0 auto; /* Center the container in the screen */
  margin-bottom: 25px;
}
main .logo img {
  max-width: 100px; /* Limit the logo size */
  display: none;
}
main .support-server-desc {
  border-radius: 10px;
  padding: 10px;
}
main .support-server-desc p {
  max-width: 3000px;
  font-size: 1.2em;
  color: #9e9e9e; /* Use the defined text color */
  line-height: 1.5; /* Increase line height for readability */
  margin: 0;
  text-align: center !important; /* Center align the paragraph text */
}
main .support-server-desc strong {
  font-weight: 500;
}
main .support-server-desc a {
  color: inherit; /* Matches the surrounding text color */
  text-decoration: none; /* Removes default underline */
  position: relative; /* Position relative to place pseudo-element */
  color: #e76969;
  white-space: nowrap; /* Prevent line breaks */
}
main .support-server-desc a::after {
  content: ""; /* Create an empty content for the pseudo-element */
  display: block; /* Make it a block-level element */
  height: 2px; /* Height of the line */
  background: white; /* Color of the line */
  position: absolute; /* Position it absolutely */
  left: 50%; /* Start from the middle of the link */
  bottom: -1px; /* Position below the link */
  width: 0; /* Start with a width of 0 */
  transition: width 0.5s ease, left 0.5s ease; /* Animate width and position */
}
main .support-server-desc a:hover::after {
  width: 100%; /* Expand to full width on hover */
  left: 0; /* Move to the left */
}
main .question-title p {
  text-align: left; /* Align text inside the title to the left */
  margin-right: 35px !important;
  font-size: 1.2em !important;
  margin: 0;
}
main .question-answer {
  margin: 0;
}
main .faq-title,
main .help-title {
  text-align: center !important; /* Ensure the titles stay centered */
  font-size: 2.2em; /* Adjust font size */
}
main .dropdown-arrow {
  right: 15px !important;
}

@media (max-width: 1450px) {
  .support-server-button .button-icon {
    display: block;
  }
  .logo {
    display: none;
    margin-right: 0px !important;
    margin-bottom: 15px;
  }
  .logo-container {
    max-width: 70vw !important;
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .question {
    width: 90% !important;
  }
}
@media (max-width: 650px) {
  .question-icon {
    display: none;
  }
  .question-title {
    margin-left: 0px !important;
  }
  .question-title p {
    text-align: left; /* Align text inside the title to the left */
    margin-right: 35px !important;
    font-size: 1.2em !important;
    margin: 0;
  }
  .question-answer {
    margin: 0;
  }
  p {
    font-size: 1.1em !important;
    text-align: left !important; /* Align text to the left */
  }
  .support-server-desc p {
    text-align: center !important; /* Center align the paragraph text */
    font-size: 1.2em !important;
  }
  /* Keep faq-title and help-title centered, adjust font size */
  .faq-title,
  .help-title {
    text-align: center !important; /* Ensure the titles stay centered */
    font-size: 1.7em !important; /* Adjust font size */
  }
  .dropdown-arrow {
    right: 15px !important;
  }
}
@media (max-width: 880px) {
  section .features::after {
    max-width: 90% !important;
  }
}
body {
  font-family: "Kanit", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #262626;
  text-align: center;
}
body h2 {
  display: inline-block; /* Ensure h1 only takes up as much space as its content */
  margin: 0;
  font-weight: 420;
  font-size: 2.5em; /* Adjusted font-size for better balance */
  color: rgb(255, 255, 255); /* Primary color for headings */
  position: relative;
  text-align: center; /* Center-align text */
}
body h2::after {
  content: "";
  display: block;
  width: 100%; /* Match the width of the text */
  height: 2px; /* Thickness of the separator */
  background-color: #e76969; /* Color of the separator */
  margin-bottom: 2vh; /* Space below the separator */
}

@media (max-width: 880px) {
  .section {
    flex-direction: column;
    align-items: center;
    padding: 0 5vw;
  }
  .section .section-content {
    margin-right: 0;
    max-width: 90vw;
    min-width: auto;
  }
  .section .section-content .section-paragraph,
  .section .section-content .section-paragraph-no-bullet {
    max-width: 100%;
    margin-left: 10;
  }
  .section .section-images {
    margin-top: 20px;
    max-width: 90vw;
    min-width: 90vw;
    align-items: flex-start;
  }
  .section .section-images .section-image {
    max-width: 60vw;
    min-width: 60vw;
    height: auto;
  }
}
@media (max-width: 440px) {
  .support-server-button {
    font-size: 1.1em !important;
  }
  .button-icon {
    width: 24px; /* Adjust icon size */
    height: 16px;
  }
  .section .section-content .section-paragraph {
    font-size: 1em;
  }
  .section .section-content .section-paragraph-no-bullet {
    font-size: 1em;
  }
  .section .section-images {
    align-items: center;
  }
  .section .section-images .section-image {
    max-width: 90vw;
    min-width: 90vw;
  }
}
.support-server-button {
  padding: 10px 20px;
  border: none;
  font-size: 1.3em;
  color: #fff;
  border-radius: 7px;
  transition: 0.5s;
  display: inline-flex; /* Align icon and text inline */
  align-items: center;
  gap: 8px; /* Space between icon and text */
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
  text-decoration: none;
}

.button-icon {
  position: relative; /* Or absolute if needed */
  top: 1px; /* Moves the icon vertically */
  left: 0px; /* Moves the icon horizontally */
  width: 31px; /* Adjust icon size */
  height: 22px;
  filter: brightness(0) invert(1); /* Makes the image white */
}

.support-server-button:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255), 0 0 75px rgb(0, 140, 255);
}

header {
  color: #ffffff;
  padding: 5vh 0;
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  text-align: center;
}
header .button-container {
  position: relative;
  flex-direction: row;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .button-container .features-button {
  display: inline-block;
  background-color: #4e4b4b;
  color: #ffffff;
  padding: 11px 25px;
  font-size: 1.3em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
header .button-container .features-button:hover {
  background-color: #343232;
}
header .header-content {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  justify-content: center;
  margin-top: -70px;
}
header .header-content h1 {
  font-weight: 420;
  text-align: center;
  display: inline-flex; /* Use inline-flex to wrap the content based on its width */
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  position: relative; /* Position relative to use absolute positioning for the separator */
  font-size: 3.5em; /* Adjust as needed */
  margin: 0 auto;
  color: #ffffff; /* Primary color for headings */
}
header .header-content h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%; /* Match the width of the text */
  height: 2px; /* Thickness of the separator */
  background-color: #303030; /* Color of the separator */
  bottom: -7px; /* Adjust as needed to position below text */
  left: 0;
}
header .header-content p {
  position: relative;
  text-align: center;
  color: #474141;
  font-size: 1.3em;
  margin: 0;
  max-width: 100%;
  padding-top: 15px;
}

footer {
  margin-top: 50px;
  background: #303030; /* Use section color */
  color: #ffffff; /* White text color */
  padding: 10px 0; /* Vertical padding */
  position: relative; /* Relative positioning */
  bottom: 0; /* Align to bottom */
  width: 100%; /* Fu ll width */
  text-align: center; /* Center the text */
}
footer p {
  margin: 0;
  margin-bottom: 10px;
  color: #9e9e9e;
  font-size: 18px;
  text-align: center !important; /* Center the text */
}
footer a {
  white-space: nowrap; /* Prevent text from wrapping to the next line */
  color: white; /* Link color */
  margin: 0 3px; /* Horizontal spacing between links */
  text-decoration: none; /* Remove underline */
  position: relative; /* Position relative to allow for absolute positioning of pseudo-element */
}
footer a:hover {
  text-decoration: none; /* Ensure no underline on hover */
}
footer a::after {
  content: ""; /* Create an empty content for the pseudo-element */
  display: block; /* Make it a block-level element */
  height: 2px; /* Height of the line */
  background: #e76969; /* Color of the line */
  position: absolute; /* Position it absolutely */
  left: 50%; /* Start from the middle of the link */
  bottom: -3px; /* Position below the link */
  width: 0; /* Start with a width of 0 */
  transition: width 0.4s ease, left 0.4s ease; /* Animate the width and position */
}
footer a:hover::after {
  width: 100%; /* Expand to full width on hover */
  left: 0; /* Move to the left */
}

@media (max-width: 800px) {
  header .header-content h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 423px) {
  header {
    height: 80vh;
  }
  header .header-content h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 390px) {
  header .button-container {
    margin-top: -10vh;
  }
  main section h2 {
    margin-top: 80px;
  }
  main section p {
    max-width: 310px;
  }
  header .button-container {
    flex-direction: column;
  }
}
@media (max-width: 359px) {
  header .header-content h1 {
    font-size: 2.4em;
  }
  header .header-content p {
    font-size: 1em;
  }
}
@media (max-width: 338px) {
  header .header-content h1 {
    font-size: 2em;
  }
}/*# sourceMappingURL=support.css.map */