@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
}
.bar {
  background: linear-gradient(#febb3d, #f06543);
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: transform 0.3s ease-in-out;
}
.nav-hidden {
  transform: translateY(-100%);
}
section:first-of-type { /*The bar floats without it*/
  margin-top: 80px;
}
.logo-container {
  display: flex;
  align-items: center; 
  float: left;
  height: 80px;
}
.logo-img {
  height: 100%; 
  width: auto;
  border-radius: 8px;
  margin-right: 15px; 
  object-fit: contain;
}
.logo-text {
  color: white;
  font-size: 25px;
  font-weight: bold;
  text-transform: none; 
}
nav ul {
  float: right;
  margin-right: 0;
}
nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}
/*For future adding active cause it takes more js*/
a.active,
a:hover {
  background: #FF5A3C;
  transition: .5s;
}
.checkbtn {
  font-size: 22px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}

section {
  background: url("bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  width: 100%;
}
/*Next step: Carousel!*/
.outer {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.carousel-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.4rem;     
  width: max-content;
}
.carousel {
    margin: 0 auto;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.group {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding-bottom: 0.1em;
  /* NEW: Force GPU rendering */
  animation: spin 8s infinite linear;
  will-change: transform; 
  transform: translateZ(0); 
  backface-visibility: hidden; 
}
.card {
  position: relative; /* IMPORTANT FOR ::before effect */
  flex: 0 0 5em;
  height: 7em;
  margin-bottom: 0.2em;
  font-size: 3rem;
  border-radius: 15px;
  text-align: center;
  align-content: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  z-index: 2; 
  pointer-events: none;
}
/*Animations for the carousel*/
@keyframes spin {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -100%, 0); }
}
@keyframes down {
  from { transform: translate3d(0, -100%, 0); }
  to { transform: translate3d(0, 0, 0); }
}
.slow {
  animation-duration: 12s;
}
.fast {
  animation-duration: 6s;
}
.delay-1 {
  animation-delay: -2s;
}
.delay-2 {
  animation-delay: -4s;
}
/* --- Fade-In Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px); /* Schiebt das Element leicht nach unten */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0); /* Bringt das Element an die Originalposition zurück */
}
/*h1, p, hero section*/
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  width: 70%;
  pointer-events: none;
}
.hero-content h1 {
  font-size: 5rem; 
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(10px);
}
/*About me*/
.about-section {
  padding: 80px 10%;
  background-color: rgb(159, 99, 99);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  height: auto;
  width: 100%;
  box-sizing: border-box;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.image-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #febb3d, #f06543);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.3;
}
.about-image {
  flex: 1;
  position: relative;
  max-width: 400px;
}
.about-content {
  flex: 1.2;
}
.about-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.about-text-box {
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  line-height: 1.6;
  text-align: justify;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.about-text-small {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: justify;
}
.about-text-box p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.about-text-box strong {
  color: #ffc75f; 
}
.pic-section {
    background-image: url('VRChat_2026-01-22_21-28-20.292_1920x1080.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh; /* Example height */
}
.sticker-row {
  display: flex;
  align-items: center; 
  gap: 15px;
}
.sticker {
  width: 60px;        
  height: auto;
  flex-shrink: 0;
}
/*Socials*/
.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  pointer-events: auto;
}
.social-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Glassmorphism*/
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Hover effects */
.social-btn:hover {
  transform: translateY(-5px);
  background: #ffffff33;
  border-color: white;
}
.social-btn.youtube:hover { color: #FF0033;}
.social-btn.tiktok:hover { color: #ff0050; text-shadow: 0 0 10px #00f2ea; }
.social-btn.discord:hover { color: #5865F2; }
.social-btn.kofi:hover { color: #ff5e5b; }
/*Spacers*/
.spacer {
    aspect-ratio: 960/100;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgb(159, 99, 99);
}
/*TOS*/
.tos-section {
  padding: 80px 10%;
  background: linear-gradient(#a76b7d, #98405a);
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 0;
}
.tos-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px;
  max-width: 1300px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.tos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Zwei Spalten auf Desktop */
  gap: 30px;
}
.tos-item h3 {
  color: #febb3d; /* Deine Akzentfarbe */
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tos-item p {
  color: white;
  line-height: 1.6;
  font-size: 1.2rem;
  opacity: 0.9;
}
/*Discord Button*/
.discord-button {
  width: 200px;
  height: 60px;
  border-color:#a76b7d;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 24px;
  display: inline-flex;
  border-radius: 20px;
  transition: all 0.3s ease;
  /* Glassmorphism*/
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.discord-button:hover {
  transform: translateY(-3px);
  background: #ffffff33;
  border-color: white;
  color: orange;
}
/*Feedback*/
.feedback-section {
  padding: 100px 10%;
  min-height: auto !important;
  height: auto !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#fc648d,#ffac78);
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  justify-content: center;
}
.feedback-card {
  width: 100%; 
  height: auto;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.feedback-card:hover {
  transform: translateY(-10px);
}
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #febb3d;
}
.stars {
  color: #febb3d;
  font-size: 1rem;
}
.feedback-card h4 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.feedback-card p {
  color: white;
  font-style: italic;
  line-height: 1.5;
  font-size: 1.2rem;
  opacity: 0.9;
}
.smalltext {
  color: white;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.9;
  margin-top: 30px;
}
.feedback-action {
  text-align: center;
}
.btn-primary {
  background: linear-gradient(#febb3d, #f06543);
  color: white;
  padding: 20px 35px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(240, 101, 67, 0.3);
}
/*Footer*/
.main-footer {
  background: rgba(221, 22, 22, 0.548); /* Dunkler Akzent am Ende */
  backdrop-filter: blur(10px);
  color: white;
  padding: 40px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}
.footer-logo img {
  height: 40px;
  border-radius: 50%;
}
.footer-socials {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
}
.footer-socials a {
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-info p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 5px 0;
}
@media (max-width: 1050px) {
  nav ul li a {
    font-size: 16px;
  }
}
/* Responsive media query code for small screen */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }
  .logo-text {
    font-size: 22px;
  }
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    z-index: 1000;
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a {
    font-size: 20px;
  }
  a:hover,
  a.active {
    background: none;
    color: #0082e6;
  }
  #check:checked~ul {
    left: 0;
  }
  /*Carousel*/
  .carousel:nth-child(n+4) {
    display: none;
  }
  .card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.2); 
  }
  .card::before {
    display: none;
  }
  /*Hero-Section*/
  .hero-content {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
  }
  .hero-content p {
    font-size: 1.3rem;
  }
  /*About section*/
  .about-section {
    padding-top: 60px 15px !important;
  }
  .about-container {
    flex-direction: column !important; 
    text-align: center !important;
    gap: 30px !important;
  }
  .about-text-box p {
    font-size: 1.1rem !important;
  }
  .about-text-box {
    padding: 20px !important;
    font-size: 0.95rem !important;
  }
  .about-title {
    font-size: 1.8rem !important; 
  }
  .tos-grid {
    grid-template-columns: 1fr;
  }
  .tos-section {
    padding: 60px 15px; 
  }
  .tos-card {
    padding: 25px;
  }
  .tos-item p {
    font-size: 0.95rem;
  }
  .main-footer {
    padding: 30px 5%;
  }
  .sticker {
    width: 50px !important;
  }
  .feedback-section {
    padding: 60px;
  }
  .feedback-grid {
    grid-template-columns: repeat(1, 1fr); 
    padding: 0 20px; 
  }
}
