@import url('../root.css');


/* About Section */
#home {
  text-align: center;
  padding: 8rem 2rem 10rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

#home h2 {
  font-size: 3.2rem;
  font-weight: 900; /* Black/Ultra Bold */
  color: var(--main-text);
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 6px 12px var(--shadow-dark), 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.02em;
  font-family: var(--font_4);
}

#home h2 .highlight {
  color: var(--main-text);
  font-weight: 100; /* Black/Ultra Bold */
  position: relative;
  display: inline-block;
  min-width: 200px;
  text-align: left;
}

/* Type Animation Styles */
.typed-text {
  transition: color 0.3s ease;
  font-weight: 1000;
  text-shadow: inherit;
}

#wordlist-animation {
  position: relative;
  display: inline-block;
  min-width: 200px;
  text-align: left;
}

/* Cursor Blink Animation */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Cursor Styles */
#wordlist-animation span:last-child {
  color: var(--main-text);
  font-weight: 700;
  animation: blink 1s infinite;
  margin-left: 2px;
}

#home p {
  font-size: 1.1rem;
  color: var(--sub-text);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 600; /* Semi Bold */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Buttons Container */
.buttons-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Bot einladen Button */
.btn-primary {
  background-color: var(--orange-box-background);
  color: var(--main-text);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800; /* Extra Bold */
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 20px var(--shadow-light), 0 2px 10px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--orange-box-background-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-light), 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mehr Plugins Button */
.btn-secondary {
  background: var(--grey-box-background);
  color: var(--main-text);
  padding: 1rem 2rem;
  border: 2px solid var(--sub-text);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700; /* Bold */
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--shadow-light), 0 2px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background-color: var(--grey-box-background-hover);
  color: var(--main-text);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
  text-shadow: none;
}

/* Arrow Icon */
.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive Design für About Section */
@media (max-width: 768px) {
  #home {
    padding: 8rem 1rem 6rem;
  }
  
  #home h2 {
    font-size: 2.4rem;
    font-weight: 900; /* Black/Ultra Bold */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    font-family: var(--font_4);
  }
  
  #home h2 .highlight {
    min-width: 150px;
    text-align: center;
  }
  
  #wordlist-animation {
    min-width: 150px;
    text-align: center;
  }
  
  #home p {
    font-size: 1rem;
    font-weight: 600; /* Semi Bold */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .buttons-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #home {
    padding: 6rem 1rem 4rem;
  }
  
  #home h2 {
    font-size: 1.8rem;
    font-weight: 900; /* Black/Ultra Bold */
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    font-family: var(--font_4);
    line-height: 1.3;
  }
  
  #home h2 .highlight {
    min-width: 120px;
    text-align: center;
    font-size: 0.9em;
  }
  
  #wordlist-animation {
    min-width: 120px;
    text-align: center;
  }
  
  #home p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .btn-primary {
    font-weight: 800; /* Extra Bold */
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn-secondary {
    font-weight: 700; /* Bold */
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.1), 0 2px 6px rgba(0, 0, 0, 0.2);
  }
}




/* Plugins Section */
#plugins {
  padding: 12rem 2rem 10rem;
  background-color: transparent;
  position: relative;
  z-index: 10;
  margin: 8rem 0;
}



.plugin-card p {
  color: var(--sub-text);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

.plugins-footer {
  text-align: center;
  margin-top: 3rem;
}

.plugins-footer p {
  color: var(--sub-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-plugins {
  background-color: var(--orange-box-background);
  color: var(--main-text);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-plugins:hover {
  background-color: var(--orange-box-background-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-light);
}

.btn-plugins .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-plugins:hover .arrow-icon {
  transform: translateX(4px);
}


.plugins-title {
    text-align: center;
    color: var(--main-text);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    line-height: 1.1;
}
.plugins-title .highlight {
    color: var(--main-text);
    font-weight: 900;
}

.new-plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    max-width: 1100px;
    gap: 2.5rem 2rem;
    justify-content: center;
    margin: 2.5rem auto;
}

.plugin-box {
    background: #0e0e10c9;
    border: #333333 1px solid;
    border-radius: 18px;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.25);
    width: 100%;
    max-width: 340px;
    min-height: 180px;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.15s, box-shadow 0.15s;
    margin: 0 auto;
}

/*
.plugin-box:not(.plugin-empty):hover {

}
*/

.plugin-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}
.plugin-title {
    font-size: 1.8rem;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
}
.tickets-title {
    background: linear-gradient(to right, #3cff00 , #0e3d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.moderation-title {
    background: linear-gradient(to right, #FF0000 , #520000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.welcome-title {
    background: linear-gradient(to right, #FFCC00 , #584700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.reactionroles-title {
    background: linear-gradient(to right, #FFCC00 , #584700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.giveaway-title {
    background: linear-gradient(to right, #FA7EFA , #5a005a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.music-title {
    background: linear-gradient(to right, #5400a8 , #2e005c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.leveling-title {
    background: linear-gradient(to right, #FF8200 , #6e3900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.money-title {
    background: linear-gradient(to right, #FFCC00 , #584700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.autoroles-title {
    background: linear-gradient(to right, #FA7EFA , #5a005a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}


.plugin-icon {
    width: 66px;
    height: 66px;
    object-fit: contain;
    margin-left: 0.5rem;
}
.plugin-box-desc {
    color: var(--sub-text);
    font-size: 1.15rem;
    font-weight: 400;
    margin-top: 0.2rem;
    line-height: 1.3;
    text-align: left;
}
.plugin-empty {
    background: var(--sub-box-background);
    border-radius: 18px;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
    width: 100%;
    max-width: 340px;
    min-height: 180px;
    opacity: 0.95;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .new-plugins-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        max-width: 95vw;
    }
    .plugin-box, .plugin-empty {
        max-width: 370px;
    }
}





/* Call-to-Action Section */
#cta {
  background-color: transparent;
  padding: 12rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: 8rem;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

#cta h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--main-text);
  margin-bottom: 3rem;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  background-color: var(--orange-box-background);
  color: var(--main-text);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 6px 20px var(--shadow-light);
  text-transform: none;
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  background-color: var(--orange-box-background-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-light);
}

.cta-btn .arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* Responsive Design für CTA Section */
@media (max-width: 768px) {
  #cta {
    padding: 8rem 1rem;
    margin-top: 6rem;
  }
  
  #cta h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #cta {
    padding: 6rem 1rem;
    margin-top: 4rem;
  }
  
  #cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

/* Responsive Design für Plugins Section */
@media (max-width: 768px) {
  #plugins {
    padding: 8rem 1rem 6rem;
    margin: 6rem 0;
  }
}

@media (max-width: 480px) {
  #plugins {
    padding: 6rem 1rem 4rem;
    margin: 4rem 0;
  }
}