/* Grundlegende Stile für den Body */
.index {
    margin: 0;
    font-family: sans-serif;
    /* Platz lassen, damit der untere Inhalt nicht vom Button verdeckt wird. 90px ist ein sicherer Wert. */
    padding-bottom: 90px;
    height: 650px; /* Nur zum Demonstrieren des Scrollens */
    width: clamp(70mm, 80mm);
    background: black;
    background-image: url('xdor.png'); 
    background-size: 100% ;
    background-repeat: no-repeat; /* Bild wiederholt sich nicht */
    background-position-x: center; 
    background-position-y: 259px; /* Bildposition festlegen */
    user-select: none;
    
}



/* Grundlegende Stile für den Body */
body {
    margin: 0;
    font-family: sans-serif;
    /* Platz lassen, damit der untere Inhalt nicht vom Button verdeckt wird. 90px ist ein sicherer Wert. */
    padding-bottom: 90px;
    height: 650px; /* Nur zum Demonstrieren des Scrollens */
    width: clamp(70mm, 80mm);
    background: black;
    background-size: 100% ;
    background-repeat: no-repeat; /* Bild wiederholt sich nicht */
    background-position-x: center; 
    background-position-y: 259px; /* Bildposition festlegen */
    user-select: none;
}




/* Container, der die Navigation unten fixiert und an die Seitenränder anpasst */
.nav-container {
    position: fixed;
    /* Unten positionieren mit etwas Abstand */
    bottom: 15px;
    /* An die Seitenränder anpassen mit 5mm Abstand */
    left: 5mm;
    right: 5mm;
    z-index: 1000;
}

/* Der grüne Haupt-Button */
.nav-button {
    background-color: rosybrown;
    color: white;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: 100%; /* Der Button füllt jetzt den gesamten Container aus */
    height: 60px;
    box-sizing: border-box; /* Stellt sicher, dass Padding die Breite nicht sprengt */
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #218838;
}

/* Der Container für die Dropdown-Optionen (klappt jetzt nach oben auf) */
.nav-dropdown {
    display: none; /* Standardmäßig versteckt */
    position: absolute;
    /* WICHTIG: Positioniert das Menü ÜBER dem Button */
    bottom: 100%;
    /* Abstand zwischen Menü und Button */
    margin-bottom: 8px;
    width: 100%; /* Das Menü soll so breit sein wie der Button */
    background-color: rosybrown;
    box-shadow: 0px -8px 16px 0px rgba(0,0,0,0.2); /* Schatten nach oben */
    border-radius: 20px;
    overflow: hidden;
}

/* Die Links im Dropdown-Menü */
.nav-dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.nav-dropdown a:hover {
    background-color: #ddd;
}

/* Diese Klasse wird von JavaScript hinzugefügt, um das Menü anzuzeigen */
.nav-dropdown.show {
    display: block;
}

/* Beispiel-Inhalt */
.content {
    padding: 20px;
    text-align: center;
}


#button3d {
    position: fixed; /* Nimmt den Button aus dem normalen Fluss */
     /* 10px vom unteren Rand des Elternelements */
    bottom: 22%;
    left: 25%;
    right: 25%;
    padding: 20px;
    background-color: rosybrown;
    border-radius: 25px;
    color: white;
    font-size: 95%;
    border: none;
    cursor: pointer;
    z-index: 500;
}



/* Container, der die Navigation unten fixiert und an die Seitenränder anpasst */
.nav-container2 {
    position: fixed;
    /* Unten positionieren mit etwas Abstand */
    bottom: 85px;
    /* An die Seitenränder anpassen mit 5mm Abstand */
    left: 80%;
    right: 5%;
    z-index: 500;
}

/* Der grüne Haupt-Button */
.nav-button2 {
    background-color: royalblue;
    color: white;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: 100%; /* Der Button füllt jetzt den gesamten Container aus */
    height: 60px;
    box-sizing: border-box; /* Stellt sicher, dass Padding die Breite nicht sprengt */
    transition: background-color 0.3s;
}

.blinking-text {
    color: #E0E0E0;
    animation: blink 5s infinite;
    font-size: 14px;
    z-index: 499;
}

.blinking-text2 {
    color: #E0E0E0;
    animation: blink 8s infinite;
    font-size: 14px;
    z-index: 499;
}

@keyframes blink {
    40% {
        opacity: 3;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}





/* loader*/
.hole {
  display: flex;
  align-items: center;
  justify-content: center;
}

i {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;

  border-radius: 140px;
  opacity: 0;
  animation-name: scale;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

i:nth-child(1) {
  animation-delay: 0.3s;
}

i:nth-child(2) {
  animation-delay: 0.6s;
}

i:nth-child(3) {
  animation-delay: 0.9s;
}

i:nth-child(4) {
  animation-delay: 1.2s;
}

i:nth-child(5) {
  animation-delay: 1.5s;
}

i:nth-child(6) {
  animation-delay: 1.8s;
}

i:nth-child(7) {
  animation-delay: 2.1s;
}

i:nth-child(8) {
  animation-delay: 2.4s;
}

i:nth-child(9) {
  animation-delay: 2.7s;
}

i:nth-child(10) {
  animation-delay: 3s;
}

@keyframes scale {
  0% {
    transform: scale(2);
    opacity: 0;
    box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1) translate(0px, -5px);
    opacity: 1;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: scale(0.1) translate(0px, 5px);
    opacity: 0;
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0);
  }
}
/*Copyright - 2025 elijahgummer (Elijah W Gummer)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/
/*loader end*/


/*Software*/

.nav-container3 {
    position: fixed;
    /* Unten positionieren mit etwas Abstand */
    bottom: 15px;
    /* An die Seitenränder anpassen mit 5mm Abstand */
    left: 5mm;
    right: 5mm;
    z-index: 1000;
}


/* From Uiverse.io by Smit-Prajapati */ 
.parent {
  width: 290px;
  height: 300px;
  perspective: 1000px;
}

.card {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, rgb(0, 255, 214) 0%, rgb(93, 49, 159) 100%);
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  box-shadow: rgba(5, 71, 17, 0) 40px 50px 25px -40px, rgba(5, 71, 17, 0.2) 0px 25px 25px -5px;
}

.glass {
  transform-style: preserve-3d;
  position: absolute;
  inset: 8px;
  border-radius: 55px;
  border-top-right-radius: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.349) 0%, rgba(255, 255, 255, 0.815) 100%);
  /* -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px); */
  transform: translate3d(0px, 0px, 25px);
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  transition: all 0.5s ease-in-out;
}

.content {
  padding: 100px 60px 0px 30px;
  transform: translate3d(0, 0, 26px);
}

.content .title {
  display: block;
  color: #5db3a5;
  font-weight: 900;
  font-size: 20px;
  position: absolute;
  bottom: -25px;
  text-align: left;
}

.content .text {
  display: block;
  color: rgba(0, 137, 78, 0.7647058824);
  font-size: 15px;
  position: absolute;
  bottom: -45px;
  text-align: left;
}

.content .text2 {
  display: block;
  color: rgba(93, 79, 165, 0.7647058824);
  font-size: 15px;
  position: absolute;
  bottom: -150px;
  text-align: left;
}

/*
.bottom {
  padding: 10px 12px;
  transform-style: preserve-3d;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translate3d(0, 0, 26px);
}

.bottom .view-more {
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: flex-end;
  transition: all 0.2s ease-in-out;
}

.bottom .view-more:hover {
  transform: translate3d(0, 0, 10px);
}

.bottom .view-more .view-more-button {
  background: none;
  border: none;
  color: royalblue;
  font-weight: bolder;
  font-size: 12px;
}

.bottom .view-more .svg {
  fill: none;
  stroke: royalblue;
  stroke-width: 3px;
  max-height: 15px;
}
/*
.bottom .social-buttons-container {
  display: flex;
  gap: 10px;
  transform-style: preserve-3d;
}

.bottom .social-buttons-container .social-button {
  width: 30px;
  aspect-ratio: 1;
  padding: 5px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  border: none;
  display: grid;
  place-content: center;
  box-shadow: rgba(5, 71, 17, 0.5) 0px 7px 5px -5px;
}

.bottom .social-buttons-container .social-button:first-child {
  transition: transform 0.2s ease-in-out 0.4s, box-shadow 0.2s ease-in-out 0.4s;
}

.bottom .social-buttons-container .social-button:nth-child(2) {
  transition: transform 0.2s ease-in-out 0.6s, box-shadow 0.2s ease-in-out 0.6s;
}

.bottom .social-buttons-container .social-button:nth-child(3) {
  transition: transform 0.2s ease-in-out 0.8s, box-shadow 0.2s ease-in-out 0.8s;
}

.bottom .social-buttons-container .social-button .svg {
  width: 15px;
  fill: #00894d;
}

.bottom .social-buttons-container .social-button:hover {
  background: black;
}

.bottom .social-buttons-container .social-button:hover .svg {
  fill: white;
}

.bottom .social-buttons-container .social-button:active {
  background: rgb(255, 234, 0);
}

.bottom .social-buttons-container .social-button:active .svg {
  fill: black;
}
*/
.logo {
  position: absolute;
  right: 0;
  top: 0;
  transform-style: preserve-3d;
}

.logo .circle {
  display: block;
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 0;
  right: 0;
  box-shadow: rgba(100, 100, 111, 0.2) -10px 10px 20px 0px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(0, 249, 203, 0.2);
  transition: all 0.5s ease-in-out;
}

.logo .circle1 {
  width: 170px;
  transform: translate3d(0, 0, 20px);
  top: 8px;
  right: 8px;
}

.logo .circle2 {
  width: 140px;
  transform: translate3d(0, 0, 40px);
  top: 10px;
  right: 10px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  transition-delay: 0.4s;
}

.logo .circle3 {
  width: 110px;
  transform: translate3d(0, 0, 60px);
  top: 17px;
  right: 17px;
  transition-delay: 0.8s;
}

.logo .circle4 {
  width: 80px;
  transform: translate3d(0, 0, 80px);
  top: 23px;
  right: 23px;
  transition-delay: 1.2s;
}

.logo .circle5 {
  width: 50px;
  transform: translate3d(0, 0, 100px);
  top: 30px;
  right: 30px;
  display: grid;
  place-content: center;
  transition-delay: 1.6s;
}

.logo .circle5 .svg {
  width: 20px;
  fill: white;
}

.parent:hover .card {
  transform: rotate3d(1, 1, 0, 30deg);
  box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px, rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

.parent:hover .card .bottom .social-buttons-container .social-button {
  transform: translate3d(0, 0, 50px);
  box-shadow: rgba(5, 71, 17, 0.2) -5px 20px 10px 0px;
}

.parent:hover .card .logo .circle2 {
  transform: translate3d(0, 0, 60px);
}

.parent:hover .card .logo .circle3 {
  transform: translate3d(0, 0, 80px);
}

.parent:hover .card .logo .circle4 {
  transform: translate3d(0, 0, 100px);
}

.parent:hover .card .logo .circle5 {
  transform: translate3d(0, 0, 120px);
}
/*Copyright - 2025 Smit-Prajapati (Smit Prajapati) 

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

*/