@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #efcb68;
}

:root {
  --titleSize: 30px;
  --textSize: 16px;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  text-decoration: none;
  color: #efcb68;
}

body {
  background-color: #0e0e0e;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #ffffff;
  cursor: default;
}

span {
  color:#efcb68;
  text-shadow: 0 0 10px rgba(255, 225, 1, 0.8);
  filter: saturate(1.2) contrast(1.1);
}

hr {
  color:#efcb68;
  height: 10px;
  width: 1100px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.row--center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.navbar-nav {
  margin-left: auto;
}

.navbar {
  background-color: transparent;
  padding: 0px;
  padding-left: 7%;
  padding-right: 0%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
  color: #ffffff;
  font-weight: 600;
  padding: 25px 30px;
  letter-spacing: 1px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #efcb68;
  filter: saturate(1.2) contrast(1.1);
}

.navbar-expand-lg .navbar-nav .active {
  color: #efcb68;
}

.navbar-brand {
  color: #ffffff;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.navbar-brand img {
  margin-right: 10px;
  width: 60px;
  height: 60px;
}

.navbar .fa-bars {
  color: #ffffff !important;
  font-size: 22px;
}

.navbar span {
  color: #ffffff;
}

.navbar-brand:hover {
  color: #efcb68;
}

.nav-link--discord {
  background-color: #efcb68;
  filter: saturate(1.2) contrast(1.1);
  color: #1f1e1e !important;
  padding: 6px 30px !important;
  border-radius: 50px;
  max-width: 140px;
  margin-right: 30px;
  margin-top: 20px;
}

.nav-link--discord:hover {
  background-color: #f8d984;
  color: #1f1e1e !important;
}

.navbar--transparent {
  background: transparent;
  backdrop-filter: blur(10px);
}

@media only screen and (max-width: 1400px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 25px 30px;
  }
  .navbar {
    padding-left: 5%;
  }
}

@media only screen and (max-width: 1300px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px 20px;
  }
  .navbar {
    padding-left: 2%;
  }
}

@media only screen and (max-width: 991px) {
  .navbar {
    padding: 14px;
    padding-left: 20px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px 20px;
    padding-left: 0px;
  }
  .navbar--transparent {
    background-color: #0e0e0e;
  }
}

header {
  color: white;
  padding: 150px 0;
  width: 700px;
  left: 0;
  margin-left: 120px;
  margin-top: 40px;
  min-height: 100vh;
}

.heading {
  margin-bottom: 40px;
}

.heading h1 {
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: 900;
}

.heading h2 {
  font-size: 20px;
  font-weight: normal;
  color: #c0c0c0;
}

.heading p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.panda-image {
  position: absolute;
  top: 47%;
  right: 200px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  filter: saturate(1.2) contrast(1.1);
}

.buttons {
  display: flex;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
  background-color: #efcb68;
  filter: saturate(1.2) contrast(1.1);
  color: #1d1d1d;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.btn:hover {
  background-color: #f8d984;
}

.btn-secondary {
  background-color: transparent;
  padding: 8px 20px;
  border: 2px solid #efcb68;
  color: #efcb68;
}

.btn-secondary:hover {
  background-color: #efcb68;
  filter: saturate(1.2) contrast(1.1);
  color: #0a0a0a;
  border-color: #d4bc77;
}

@media screen and (max-width: 600px) {
  header {
      width: 84%;
      margin: 0 40px;
  }

  .buttons {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
  }
}

.container-chevron {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 22vh;
  margin-top: -320px;

}

.chevron {
  position: absolute;
  width: 2.5rem;
  height: 0.48rem;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
  filter: saturate(1.2) contrast(1.1);
}

.chevron:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before, .chevron:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #efcb68;
}

.chevron:before {
  left: 0;
  transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

.section-title {
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
}

.features {
  padding: 60px 0;
  display: flex;
  flex-direction: column; 
  gap: 100px; 
}

.feature-card {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 36px;
  filter: saturate(1.2) contrast(1.1);
  color: #efcb68;
  margin-bottom: 20px;
}

.feature-title {
  color: #efcb68;
  filter: saturate(1.2) contrast(1.1);
  font-size: 25px;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 16px;
}

.about-me {
  padding: 60px 0;
}

.about-me .container {
  text-align: center;
  color: #fff;
}

.about-me .section-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.about-me p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
}

.about-me p:first-child {
  font-weight: 600;
}

.about-me p {
  padding: 20px;
  border-radius: 5px;
}

.adm {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.admin-card {
  text-align: center;
  margin-bottom: 40px;
  max-width: 300px; 
  margin: 0 auto; 
}

.admin-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: block; 
  margin: 0 auto; 
  margin-bottom: 15px;
}

.admin-name {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 5px;
}

.admin-role {
  font-size: 18px;
  font-weight: 600;
  color: #efcb68;
  filter: saturate(1.2) contrast(1.1);
  margin-bottom: 20px;
}

.admin-badge {
  font-size: 24px;
  color: #efcb68;
}

@media only screen and (max-width: 991px) {
  .footer-hr {
    display: none;
  }
  }

@media only screen and (max-width: 991px) {
  .panda-image {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .about-me p {
    font-size: 15px;
  }
}