@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); /*font-family: 'Inter', sans-serif;*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --main-font: 'Inter', sans-serif;
  --main-color: #c300ff;
  --background-color: #292828;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --description-color: #D2D0D0;
  --gg:#292828;
  --faq-slot-color: #272727;

  --green-color: #4AFF6B;
  --ip-copied-background: rgba(74, 255, 107, 0.17);
  --ip-copied-icon-background: rgba(74, 255, 107, 0.5);

  --copy-ip-button-background:rgba(74, 255, 107, 0.5) ;
  --how-to-join-button-background: rgba(210, 208, 208, 0.2);
  --stats-background: rgba(210, 208, 208, 0.05);
  --stat-icon-background-2: rgba(74, 255, 107, 0.5);

  --scroll-bar: rgba(210, 208, 208, 0.3);
  --scroll-bar-hover: #555555FF;

  --red-color: #FF7C7C;
  --warning-background: rgba(255, 124, 124, 0.17);
  --warning-icon-background: rgba(255, 124, 124, 0.5);
  --warning-color: #F5C1C1;

  /*Admin-Team rank colors*/
  --default-rank-color: rgba(210, 208, 208, 0.3);
}

body {
  background: var(--background-color);
  font-family: var(--main-font);
}

/*Navbar*/
.navbar {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 150px;
  background: var(--background-color);
  transition: 0.3s ease-in-out;
}

.navbar a {
  text-decoration: none;
}

.navbar .menu-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar .menu-mobile .logo {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.navbar .menu-mobile .logo img {
  max-width: 40px;
  height: auto;
}

.navbar .menu-mobile .logo h3 {
  color: var(--white-color);
  font-weight: 900;
  font-size: 20px;
}

.navbar .links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  transition: 0.3s ease-in-out;
}

.navbar .links .link {
  color: var(--description-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.navbar .links .link.active {
  color: var(--white-color);
}

.navbar .links .link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

.navbar .links .link:not(.active):hover {
  color: var(--white-color);
}

.navbar .menu-mobile .hamburger {
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  transition: 0.5s;
  display: none;
}

.navbar .menu-mobile .hamburger:hover {
  opacity: 0.8;
}

.navbar.active {
  max-height: 1000px;
}

.navbar.active .links {
  opacity: 1;
  z-index: 2;
}

/*Header*/
#hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  background: #000; /* Fallback background color */
}


.overlay {
  background: url("/images/background.png") no-repeat fixed center;
  position: absolute;
  top: 0;
  left: 0;
  width: 2000%;
  height: 20000%;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f0f0f0;
}

.animated-text {
  color: var(--main-color);
  font-size: 3.5em;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  display: inline-block;
}

@keyframes fadeInText {
  0%, 100% {
      opacity: 0;
      transform: translateY(50px);
  }
  10%, 90% {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eaeaea;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #d400ff3d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px;
  font-size: 1.2em;
  box-shadow: 0px 8px 20px #ff50e2de;
}

.cta-button:hover {
  background-color: #d400ff3d;
  box-shadow: 0px 12px 30px #ff50e2de;
  transform: translateY(-5px);
}

.secondary {
  background-color: #d400ff3d;
}

.secondary:hover {
  background-color: #d400ff3d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5em;
  }

  .cta-button {
      font-size: 1em;
      padding: 12px 30px;
  }
}

/*Adout*/
#about-us {
  text-align: center;
  padding: 40px 10px; /* Increased padding and added horizontal padding for wider content */
  background-color: var(--stats-background);
}

#about-us h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--white-color);
  position: relative;
}

#about-us h1 span {
  color: var(--main-color);
  font-family: var(--main-font);
}

#about-us h1::after {
  content: '';
  width: 80px;
  height: 3px;
  background: var(--main-color);
  display: block;
  margin: 20px auto;
  border-radius: 2px;
}

.intro-text {
  font-size: 1.4em;
  margin-bottom: 60px;
  max-width: 900px; /* Increased max-width for larger text block */
  margin: 0 auto;
  color: var(--white-color);
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  animation: fadeIn 1.5s ease-in-out;
}

.text-section {
  flex: 1;
  text-align: left;
}

.text-section h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--main-color);
}

.text-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--white-color);
  line-height: 1.8;
}

.button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #d400ff3d;
  color: var(--white-color);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px #ff50e2de;
}

.button:hover {
  background-color: #d400ff3d;
  box-shadow: 0px 8px 20px #ff50e2de;
  transform: translateY(-3px);
}

.image-section {
  flex: 1;
  text-align: center;
}

.animated-image {
  width: 100%;
  max-width: 600px; /* Increased max-width for larger image */
  animation: moveUp 2s ease-out forwards;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
      padding: 60px 5%; /* Reduced horizontal padding for smaller screens */
  }

  .content {
      flex-direction: column-reverse;
  }

  .text-section, .image-section {
      padding: 0;
  }

  .image-section {
      margin-bottom: 40px;
  }

  .intro-text {
      max-width: 100%; /* Ensure full-width text block on smaller screens */
  }

  .animated-image {
      max-width: 100%; /* Ensure full-width image on smaller screens */
  }
}





.faq-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/images/background.png") no-repeat fixed center;
}

.faq-container {
  max-width: 800px;
  width: 100%;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.faq-container:hover {
  transform: scale(1.02);
}

h2 {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.faq-highlight {
  color: var(--main-color);
  font-weight: bold;
}

p {
  font-size: 1.1em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
}

.faq-question {
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden; /* Αποτρέπει την υπέρβαση του περιεχομένου */
}

.faq-question:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.icon {
  font-size: 1.5em;
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #292929;
  padding: 0 20px; 
  border-radius: 0 0 5px 5px;
  color: #bbb;
  line-height: 1.6;
  margin-top: 10px;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer.show {
  max-height: 200px; 
  opacity: 1; 
}

.faq-question::after {
  content: '';
  position: absolute;
  left: 10px; /* Απόσταση από την αριστερή πλευρά */
  top: 50%; /* Τοποθέτηση στο κέντρο */
  width: 4px;
  height: 30px; /* Ύψος γραμμής */
  background-color: var(--main-color);
  transform: translateY(-50%); /* Κεντράρισμα της γραμμής */
  transition: height 0.3s ease;
}

.faq-question.show::after {
  height: 50px; /* Μεγαλύτερη γραμμή κατά την εμφάνιση */
}

.faq-question:focus {
  outline: none;
  box-shadow: 0 0 5px var(--main-color);
}

@media (max-width: 600px) {
  .faq-container {
      padding: 20px;
  }

  h2 {
      font-size: 2em;
  }

  p {
      font-size: 1em;
  }

  .faq-question {
      padding: 10px 15px;
  }

  .faq-answer {
      padding: 10px 15px; 
  }

  .icon {
      font-size: 1.2em;
  }
}


 /*Footer*/
/* Footer Base Styles */
.footer {
    background-color: var(--stats-background);
    color: #d3d9e1;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 0 20px;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--main-color); /* Orange color for headings */
}

.footer-column h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #d3d9e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--main-color);
}

/* Social Media List Styles */
.social-media-list li {
    margin-bottom: 10px;
}

.social-media-list li a {
    display: flex;
    align-items: center;
}

.social-media-list li a i {
    margin-right: 10px;
    color: var(--main-color); /* Icon color */
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #d3d9e1;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        margin: 20px 0;
    }

    .footer-column h3::after {
        display: none; /* Hide the underline on smaller screens */
    }
}


 /*Scrollbar*/
 ::-webkit-scrollbar {
   width: 5px;
 }
 
 ::-webkit-scrollbar-track {
   background: var(--stats-background);
 }
 
 ::-webkit-scrollbar-thumb {
   background: var(--scroll-bar);
 }
 
 ::-webkit-scrollbar-thumb:hover {
   background: var(--scroll-bar-hover);
 }
 
 /*Other*/
 section:not(#header) .content {
   padding: 90px 150px;
   width: 100%;
 }
  
 
/*Animations*/
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

/* Responsive */

/* Header */
@media screen and (max-width: 1625px) {
  #header .content {
      padding: 100px 60px; /* Μείωση του padding */
      align-items: start;
      justify-content: center;
      width: 100%; /* Προσθήκη width για να καλύπτει όλο το πλάτος */
      box-sizing: border-box; /* Βεβαιωθείτε ότι το padding δεν επηρεάζει το συνολικό πλάτος */
  }
}

@media screen and (max-width: 1361px) {
  #header .content {
      flex-direction: column;
      padding: 100px 60px; /* Μείωση του padding */
      height: auto; /* Αυτόματη προσαρμογή του ύψους */
      gap: 60px;
      width: 100%; /* Προσθήκη width για ευελιξία */
  }

  #header .content .left {
      gap: 30px;
      justify-content: left;
      width: 100%; /* Προσθήκη width για ευελιξία */
  }

  #header .content .right .logo-img {
      display: none;
  }

  @media screen and (min-height: 745px) {
      #header .content {
          justify-content: center;
      }

      #header .content .left {
          height: fit-content;
          justify-content: center;
          gap: 30px;
      }

      #header .content .right {
          height: fit-content;
          justify-content: center;
          gap: 30px;
          display: flex;
      }
  }
}

@media screen and (max-width: 819px) {
  #header .content {
      padding: 100px 20px; /* Μείωση του padding */
  }

  #header .content .left .server-name p {
      font-size: 13px; /* Μείωση του font-size */
  }

  #header .content .left .server-name h1 {
      font-size: 30px; /* Μείωση του font-size */
  }

  #header .content .left .server-description {
      font-size: 14px; /* Μείωση του font-size */
  }
}

@media screen and (max-width: 447px) {
  #header .content .left .server-name h1 {
      font-size: 25px; /* Μείωση του font-size */
  }
}

@media screen and (max-width: 383px) {
  #header .content .left .buttons {
      flex-direction: column;
  }
}

/* About us */
@media screen and (max-width: 1551px) {
    #about .content .left .about-us {
        max-width: 90%;
    }
}

@media screen and (max-width: 1183px) {
    #about .content {
        flex-direction: column;
        gap: 40px;
    }

    #about .content .left .about-us {
        max-width: 100%;
    }

    #about .content .right img {
        margin: auto;
        right: 0;
        max-width: 100%; /* Διασφαλίζει ότι η εικόνα δεν ξεπερνά το πλάτος του γονέα */
    }

    #about .content .right .img-background {
        width: 100%;
    }
}

/* Navbar */
@media screen and (max-width: 1625px) {
  .navbar {
    padding: 20px 90px;
    width: 100%; /* Προσθήκη width για να καλύπτει όλο το πλάτος */
    box-sizing: border-box; /* Βεβαιωθείτε ότι το padding δεν επηρεάζει το συνολικό πλάτος */
  }
}

@media screen and (max-width: 819px) {
  .navbar {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 867px) {
  .navbar {
    flex-direction: column;
    gap: 30px;
    max-height: 90px;
  }

  .navbar .menu-mobile {
    width: 100%;
  }

  .navbar .menu-mobile .hamburger {
    display: flex;
  }

  .navbar .links {
    flex-direction: column;
    order: 2;
    width: 100%;
    opacity: 0;
    z-index: -1;
  }
}

/* General sections */
@media screen and (max-width: 1625px) {
  section:not(#header) .content {
    padding: 90px;
    width: 100%; /* Προσθήκη width για ευελιξία */
  }

  #footer {
    padding: 20px 90px;
    width: 100%; /* Προσθήκη width για ευελιξία */
  }
}

@media screen and (max-width: 819px) {
  section:not(#header) .content {
    padding: 50px 30px;
  }

  #footer {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 564px) {
  #footer {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* FAQ */
@media screen and (max-width: 6729px) {
    #faq .content .info .section-description {
        max-width: 100%;
    }
}

/* For larger screens */
@media screen and (min-width: 2560px) {
    #header .content {
        padding: 120px 80px; /* Αύξηση του padding */
        justify-content: center;
        width: 100%; /* Καλύπτει το πλάτος */
        box-sizing: border-box; /* Βεβαιωθείτε ότι το padding δεν επηρεάζει το συνολικό πλάτος */
    }

    #header .content .left {
        gap: 40px; /* Αύξηση του gap */
        width: 100%; /* Ευελιξία */
    }

    #about .content {
        gap: 60px; /* Αύξηση του gap */
        width: 100%; /* Ευελιξία */
    }

    .navbar {
        padding: 30px 100px; /* Αύξηση του padding */
        width: 100%; /* Καλύπτει το πλάτος */
        box-sizing: border-box; /* Βεβαιωθείτε ότι το padding δεν επηρεάζει το συνολικό πλάτος */
    }

    section:not(#header) .content {
        padding: 100px; /* Αυξάνοντας το padding */
        width: 100%; /* Καλύπτει το πλάτος */
    }

    #footer {
        padding: 30px 100px; /* Αυξάνοντας το padding */
        width: 100%; /* Καλύπτει το πλάτος */
    }
}
