@import '_material-colors';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    background: #170B2A;
}

body {
    font-family: Arial, sans-serif;
}

/* Navigation Styles */
nav {
    position: fixed;
    width: 100%;
    background-color: #170B2A;
    padding: 1.4rem 1.2rem 1.2rem 1.2rem;
    z-index: 1000;
    border-bottom: none;
}

nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px; /* Höhe des "Border-Top" */
    width: 100%;
    background: linear-gradient(to right, #D12C66, #2B89AE);
  }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-image {
    height: 35px;
    padding: 5px;
    width: auto;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.nav-links a:hover {
    color: #D12C66;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover::after {
    width: 0;
}

.nav-links a.active {
    color: #D12C66;
}

.nav-links a.active::after {
    display: none;
}

/* Section Styles */
.section {
    min-height: 80vh;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#home {
    background:#210E3D;
    border-bottom: none;
    padding-top: 70px;
    min-height: 70vh !important;
}

#ticker_underlay {
    height: 270px;
    background: #210E3D;
    min-height: auto;
}

#ticker {
    height: auto;
    min-height: auto;
    padding: 0;
    position: relative;
    bottom: 265px;
    z-index: 100;
    margin-bottom: -216px;

}

#about {
    background-color: #170B2A;
    border-bottom: none;
    color: #fff;
}

#howtobuy {
    background-color: #210E3D;
    border-bottom: none;
    color: #fff;
}

#tokenomics {
    background-color: #170B2A;
    border-bottom: none;
    color: #fff;
}

#roadmap {
    background-color: #210E3D;
    border-bottom: none;
    color: #fff;
}

#memes {
    background-color: #210E3D;
    border-bottom: none;
    color: #fff;
}

.meme-image {
    max-width: 720px;
    margin-bottom: 0;
    border-radius: 15px;
    animation: float 4.88s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }
    20% {
        transform: translateY(-15px) scale(1.02);
    }
    40% {
        transform: translateY(-25px) scale(1.03);
    }
    60% {
        transform: translateY(-10px) scale(1.02);
    }
    80% {
        transform: translateY(-20px) scale(1.025);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

h1, h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8B4513;
}

#tokenomics h2, #roadmap h2, #memes h2 {
    color: #D12C66;
}

/* Animation für die Buchstaben */
@keyframes typein {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-text {
    font-family: 'Chewy', cursive;
    font-size: 3.375rem;
    color: #2C1810;
    text-align: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    width: 100%;
}

.text-line {
    position: absolute;
    width: 100%;
    opacity: 0;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    -webkit-text-stroke: 2px white;
    text-shadow: 
        3px 3px 0 #fff,
        -3px -3px 0 #fff,
        3px -3px 0 #fff,
        -3px 3px 0 #fff;
}

.text-line span {
    opacity: 0;
    display: inline-block;
}

.text-line.active {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.text-line.active span {
    animation: typein 0.07s ease-out forwards;
}

/* Vollständige Verzögerungen für die Buchstaben */
.text-line.active span:nth-child(1) { animation-delay: 0.07s; }
.text-line.active span:nth-child(2) { animation-delay: 0.14s; }
.text-line.active span:nth-child(3) { animation-delay: 0.21s; }
.text-line.active span:nth-child(4) { animation-delay: 0.28s; }
.text-line.active span:nth-child(5) { animation-delay: 0.35s; }
.text-line.active span:nth-child(6) { animation-delay: 0.42s; }
.text-line.active span:nth-child(7) { animation-delay: 0.49s; }
.text-line.active span:nth-child(8) { animation-delay: 0.56s; }
.text-line.active span:nth-child(9) { animation-delay: 0.63s; }
.text-line.active span:nth-child(10) { animation-delay: 0.70s; }
.text-line.active span:nth-child(11) { animation-delay: 0.77s; }
.text-line.active span:nth-child(12) { animation-delay: 0.84s; }
.text-line.active span:nth-child(13) { animation-delay: 0.91s; }
.text-line.active span:nth-child(14) { animation-delay: 0.98s; }
.text-line.active span:nth-child(15) { animation-delay: 1.05s; }
.text-line.active span:nth-child(16) { animation-delay: 1.12s; }
.text-line.active span:nth-child(17) { animation-delay: 1.19s; }
.text-line.active span:nth-child(18) { animation-delay: 1.26s; }
.text-line.active span:nth-child(19) { animation-delay: 1.33s; }
.text-line.active span:nth-child(20) { animation-delay: 1.40s; }
.text-line.active span:nth-child(21) { animation-delay: 1.47s; }
.text-line.active span:nth-child(22) { animation-delay: 1.54s; }
.text-line.active span:nth-child(23) { animation-delay: 1.61s; }
.text-line.active span:nth-child(24) { animation-delay: 1.68s; }
.text-line.active span:nth-child(25) { animation-delay: 1.75s; }
.text-line.active span:nth-child(26) { animation-delay: 1.82s; }
.text-line.active span:nth-child(27) { animation-delay: 1.89s; }
.text-line.active span:nth-child(28) { animation-delay: 1.96s; }
.text-line.active span:nth-child(29) { animation-delay: 2.03s; }
.text-line.active span:nth-child(30) { animation-delay: 2.10s; }

/* Verzögerungen für die Buchstaben (31-50) */
.text-line.active span:nth-child(31) { animation-delay: 2.17s; }
.text-line.active span:nth-child(32) { animation-delay: 2.24s; }
.text-line.active span:nth-child(33) { animation-delay: 2.31s; }
.text-line.active span:nth-child(34) { animation-delay: 2.38s; }
.text-line.active span:nth-child(35) { animation-delay: 2.45s; }
.text-line.active span:nth-child(36) { animation-delay: 2.52s; }
.text-line.active span:nth-child(37) { animation-delay: 2.59s; }
.text-line.active span:nth-child(38) { animation-delay: 2.66s; }
.text-line.active span:nth-child(39) { animation-delay: 2.73s; }
.text-line.active span:nth-child(40) { animation-delay: 2.80s; }
.text-line.active span:nth-child(41) { animation-delay: 2.87s; }
.text-line.active span:nth-child(42) { animation-delay: 2.94s; }
.text-line.active span:nth-child(43) { animation-delay: 3.01s; }
.text-line.active span:nth-child(44) { animation-delay: 3.08s; }
.text-line.active span:nth-child(45) { animation-delay: 3.15s; }
.text-line.active span:nth-child(46) { animation-delay: 3.22s; }
.text-line.active span:nth-child(47) { animation-delay: 3.29s; }
.text-line.active span:nth-child(48) { animation-delay: 3.36s; }
.text-line.active span:nth-child(49) { animation-delay: 3.43s; }
.text-line.active span:nth-child(50) { animation-delay: 3.50s; }

/* Styling für das Logo */
.logo-image {
    max-width: 397px;
    margin-bottom: 10px;
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.placeholder_image {
    width: 400px;
    height: 300px;
    margin: auto;
    background:#ccc;
}

/* Mobile Navigation Styles */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 999;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.close-icon {
    display: none;
    position: absolute;
    top: 13px;
    right: 24px;
    font-size: 44px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.nav-wrapper {
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #170B2A;
        padding: 80px 20px 20px;
        transition: 0.3s;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .close-icon {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.44rem;
    }

    .nav-logo-image {
        height: 35px;
    }

    .logo-image {
        max-width: 337px;
    }

    body {
        overflow-x: hidden;
        overflow-y: scroll;
        width: 100%;
    }

    .meme-image {
        max-width: 540px;
    }
}

/* Button Styling */
.get-presso-btn {
    margin-top: -15px;
    padding: 1.25rem 3.75rem;
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    background-color: #FF4500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-presso-btn:hover {
    background-color: #2C1810;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    top:13px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background-color: #170B2A;
    border-radius: 8px;
    border: 2.5px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #210E3D;
    border-color: #D12C66;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: white;
}

/* Spezifische Icon-Anpassungen */
.social-icon.telegram {
    stroke-width: 1.5;
}

.social-icon.twitter {
    stroke-width: 1.5;
}

.social-icon.instagram {
    stroke-width: 1.5;
}

.about-content {
    width: 75%;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
    text-align: center;
}

.about-section h3 {
    font-family: 'Chewy', cursive;
    font-size: 2.8rem;
    color: #D12C66;
    margin-bottom: 1.5rem;
}

.about-section p span {
    color:#D12C66;
}

.about-section p {
    font-family: 'Chewy', cursive;
    font-size: 1.8rem;
    color: #2C10;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-content {
        width: 90%;
    }

    .about-section h3 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1.4rem;
    }
}

.about-title {
    font-family: 'Chewy', cursive;
    font-size: 4rem;
    color: #D12C66;
    margin-bottom: 3rem;
    text-align: center;
    /*-webkit-text-stroke: 0.5px #FFF;
    text-shadow: 
        0.75px 0.75px 0 #FFF,
        -0.75px -0.75px 0 #FFF,
        0.75px -0.75px 0 #FFF,
        -0.75px 0.75px 0 #FFF;*/
}

@media (max-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
}

/* How to buy*/

.buy-section p {
    font-family: 'Chewy', cursive;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    #howtobuy .about-content {
        grid-template-columns: 1fr;
        width: 95%;
    }
    
    #howtobuy .about-section {
        margin: 1rem 0;
    }
}

#howtobuy .about-section {
    margin: 1.5rem;
    max-width: 600px;
    background-color: #170B2A;
    border: 3px solid #fff;
    border-bottom-width: 6px;
    border-radius: 12px;
    padding: 1.5rem 2rem 1.5rem 2rem;
    transition: all 0.3s ease;
}

#howtobuy .about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 90%;
    max-width: 1200px;
}

/* Versetzte Anordnung der Boxen */
#howtobuy .about-section:nth-child(odd) {
    transform: translateX(-2rem);
}

#howtobuy .about-section:nth-child(even) {
    transform: translateX(2rem);
}

/*#howtobuy .about-section:nth-child(2) {
    position: relative;
    top:120px;
}

#howtobuy .about-section:nth-child(4) {
    position: relative;
    top:120px;
}*/

/* Hover-Effekt anpassen */
#howtobuy .about-section:hover {
    transform: translateY(2px) translateX(-2rem);  /* Für ungerade Boxen */
    border-bottom-width: 4px;
}

#howtobuy .about-section:nth-child(even):hover {
    transform: translateY(2px) translateX(2rem);  /* Für gerade Boxen */
}

/* Mobile Anpassungen */
@media (max-width: 1200px) {
    #howtobuy .about-content {
        grid-template-columns: 1fr;
        width: 95%;
    }
    
    #howtobuy .about-section {
        margin: 1rem 0;
        transform: none !important;  /* Entfernt die Versetzung auf mobilen Geräten */
    }
    
    #howtobuy .about-section:hover {
        transform: translateY(2px) !important;  /* Einheitlicher Hover-Effekt auf mobilen Geräten */
    }
}

/* Coffee Beans Styling */
.coffee-beans {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.coffee-bean {
    position: absolute;
    width: 40px;
    height: auto;
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
    transition: transform 0.3s ease;
}

/* Verschiedene Positionen für die Bohnen */
.coffee-bean:nth-child(1) { top: 15%; left: 10%; width: 35px; --rotation: 45deg; animation-duration: 2.2s; }
.coffee-bean:nth-child(2) { top: 25%; left: 85%; width: 45px; --rotation: 180deg; animation-duration: 1.8s; }
.coffee-bean:nth-child(3) { top: 50%; left: 5%; width: 30px; --rotation: -30deg; animation-duration: 2.5s; }
.coffee-bean:nth-child(4) { top: 65%; left: 75%; width: 40px; --rotation: 90deg; animation-duration: 1.9s; }
.coffee-bean:nth-child(5) { top: 85%; left: 15%; width: 38px; --rotation: -120deg; animation-duration: 2.3s; }
.coffee-bean:nth-child(6) { top: 85%; left: 90%; width: 42px; --rotation: 270deg; animation-duration: 2.1s; }
.coffee-bean:nth-child(7) { top: 75%; left: 25%; width: 36px; --rotation: -45deg; animation-duration: 2.4s; }
.coffee-bean:nth-child(8) { top: 20%; left: 70%; width: 44px; --rotation: 135deg; animation-duration: 1.7s; }
.coffee-bean:nth-child(9) { top: 55%; left: 85%; width: 32px; --rotation: 45deg; animation-duration: 2.6s; }
.coffee-bean:nth-child(10) { 
    display: none; /* Bohne ausgeblendet */
    top: 80%; 
    left: 60%; 
    width: 41px; 
    --rotation: 90deg; 
    animation-duration: 2.3s; 
}
.coffee-bean:nth-child(11) { top: 30%; left: 30%; width: 37px; --rotation: -30deg; animation-duration: 1.8s; }
.coffee-bean:nth-child(12) { top: 50%; left: 18%; width: 39px; --rotation: 90deg; animation-duration: 2.4s; }
.coffee-bean:nth-child(13) { 
    display: none; /* Bohne ausgeblendet */
    top: 70%; 
    left: 35%; 
    width: 43px; 
    --rotation: 45deg; 
    animation-duration: 2.1s; 
}
.coffee-bean:nth-child(14) { top: 25%; left: 55%; width: 34px; --rotation: 180deg; animation-duration: 1.9s; }
.coffee-bean:nth-child(15) { top: 60%; left: 65%; width: 37px; --rotation: 90deg; animation-duration: 2.2s; }
.coffee-bean:nth-child(16) { top: 40%; left: 75%; width: 40px; --rotation: 45deg; animation-duration: 2.5s; }
.coffee-bean:nth-child(17) { top: 85%; left: 40%; width: 36px; --rotation: 135deg; animation-duration: 1.8s; }
.coffee-bean:nth-child(18) { top: 15%; left: 60%; width: 42px; --rotation: 45deg; animation-duration: 2.3s; }
.coffee-bean:nth-child(19) { top: 75%; left: 50%; width: 35px; --rotation: 180deg; animation-duration: 2.0s; }
.coffee-bean:nth-child(20) { top: 35%; left: 25%; width: 38px; --rotation: 90deg; animation-duration: 2.4s; }
.coffee-bean:nth-child(21) { top: 65%; left: 80%; width: 41px; --rotation: 45deg; animation-duration: 1.7s; }
.coffee-bean:nth-child(22) { top: 45%; left: 15%; width: 37px; --rotation: 135deg; animation-duration: 2.2s; }
.coffee-bean:nth-child(23) { top: 90%; left: 70%; width: 39px; --rotation: 45deg; animation-duration: 2.5s; }
.coffee-bean:nth-child(24) { top: 20%; left: 40%; width: 43px; --rotation: 180deg; animation-duration: 1.9s; }
.coffee-bean:nth-child(25) { top: 55%; left: 30%; width: 36px; --rotation: 90deg; animation-duration: 2.3s; }
.coffee-bean:nth-child(26) { top: 80%; left: 20%; width: 40px; --rotation: 45deg; animation-duration: 2.1s; }
.coffee-bean:nth-child(27) { top: 30%; left: 65%; width: 38px; --rotation: 135deg; animation-duration: 1.8s; }
.coffee-bean:nth-child(28) { top: 70%; left: 45%; width: 35px; --rotation: 45deg; animation-duration: 2.4s; }
.coffee-bean:nth-child(29) { top: 40%; left: 85%; width: 42px; --rotation: 180deg; animation-duration: 2.0s; }
.coffee-bean:nth-child(30) { top: 60%; left: 10%; width: 37px; --rotation: 90deg; animation-duration: 2.2s; }
.coffee-bean:nth-child(31) { top: 25%; left: 75%; width: 39px; --rotation: 45deg; animation-duration: 1.9s; }
.coffee-bean:nth-child(32) { top: 50%; left: 3%; width: 41px; --rotation: 165deg; animation-duration: 2.2s; }
.coffee-bean:nth-child(33) { top: 92%; left: 95%; width: 38px; --rotation: 225deg; animation-duration: 1.8s; }

@keyframes floatBean {
    0%, 100% { 
        transform: translateY(0) rotate(calc(var(--rotation) + 0deg)); 
    }
    25% { 
        transform: translateY(-10px) rotate(calc(var(--rotation) - 5deg)); 
    }
    50% { 
        transform: translateY(-20px) rotate(calc(var(--rotation) + 8deg)); 
    }
    75% { 
        transform: translateY(-10px) rotate(calc(var(--rotation) - 3deg)); 
    }
}

.coffee-bean {
    animation: floatBean 12.66s ease-in-out infinite;
    animation-delay: var(--float-delay);
    --rotation: 0deg;
}

/* Fly-out Animation */
@keyframes flyOut {
    to {
        transform: translate(var(--fly-x), var(--fly-y)) rotate(var(--fly-rotation));
        opacity: 0;
    }
}

.fly-out {
    animation: flyOut 0.3s ease-out forwards;
}

/* Meme Grid Styling - nur einmal definieren */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.meme-thumbnail {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 4px solid #FFF8DC;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 250px;
    margin: 0 auto;
    background-color: #FFF8DC;
}

.meme-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Unterschiedliche Hover-Effekte für jeden Container */
.meme-thumbnail:nth-child(1):hover {
    transform: scale(1.08) rotate(2deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(2):hover {
    transform: scale(1.12) rotate(-3deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(3):hover {
    transform: scale(1.15) rotate(4deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(4):hover {
    transform: scale(1.1) rotate(-2deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(5):hover {
    transform: scale(1.13) rotate(3.5deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(6):hover {
    transform: scale(1.09) rotate(-4deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(7):hover {
    transform: scale(1.14) rotate(2.5deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(8):hover {
    transform: scale(1.11) rotate(-3.5deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.meme-thumbnail:nth-child(9):hover {
    transform: scale(1.16) rotate(3deg);
    border-color: #D12C66;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

/* Allgemeinen Hover-Effekt anpassen */
.meme-thumbnail:hover {
    border-color: #D12C66;
}

/* Lightbox Styling - nur einmal definieren */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 0;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.lightbox button:hover {
    color: #FF4500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
}

/* Lightbox Navigation Styling */
.lightbox button.lightbox-prev,
.lightbox button.lightbox-next {
    background-color: #ff3ea5;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
    margin: 0 20px;
}

.lightbox button.lightbox-prev:hover,
.lightbox button.lightbox-next:hover {
    background-color: #2B89AE;
}

.lightbox button.lightbox-prev svg,
.lightbox button.lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
}

/* Memes Überschrift im gleichen Stil wie About */
#memes h2 {
    font-family: 'Chewy', cursive;
    font-size: 4rem;
    color: #D12C66;
    margin-bottom: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    #memes h2 {
        font-size: 3rem;
    }
}

/* Tokenomics Chart Container */

#app {
    display: none;
}

.chart-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 100%;
}

.slice {
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 200px, 200px, 100px);
}

.slice.one {
    transform: rotate(0deg);
    background: #D12C66;
}

.slice.one::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 100px, 200px, 0px);
    transform: rotate(342deg);
    background: #D12C66;
}

.slice.two {
    transform: rotate(342deg);
    background: #2B89AE;
}

.slice.two::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 100px, 200px, 0px);
    transform: rotate(11deg);
    background: #2B89AE;
}

.slice.three {
    transform: rotate(353deg);
    background: #12134E;
}

.slice.three::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 100px, 200px, 0px);
    transform: rotate(4deg);
    background: #12134E;
}

.slice.four {
    transform: rotate(357deg);
    background: #FFF8DC;
}

.slice.four::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 100px, 200px, 0px);
    transform: rotate(3deg);
    background: #FFF8DC;
}

.title {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 30px;
    left: 30px;
    background: #FFF8DC;
    border-radius: 50%;
    line-height: 140px;
    font-size: 18px;
    font-family: 'Chewy', cursive;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    color: #D12C66;
}

.chart-key {
    position: relative;
    margin: 2rem auto 0;
    text-align: left;
    max-width: 200px;
}

.key {
    width: 100%;
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.key .dot {
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    display: inline-block;
}

.key .label {
    font-family: 'Chewy', cursive;
    color: #2C1810;
}

.dot.one { background: #D12C66; }
.dot.two { background: #2B89AE; }
.dot.three { background: #12134E; }
.dot.four { background: #FFF8DC; }

.chart {
    margin: 0 auto;
    position: relative;
}

.chart .sector {
    transform-origin: 50% 50%;
    transition: transform 200ms;
    cursor: pointer;
}

.chart .sector:hover {
    transform: scale(1.05);
}

.chart text {
    pointer-events: none;
    font-family: 'Chewy', cursive;
}

.chart circle {
    pointer-events: all;
    stroke: #2C1810;
    stroke-width: 2px;
}

.chart .chart-label {
    pointer-events: none;
    font-family: 'Chewy', cursive;
    font-weight: bold;
    text-transform: uppercase;
}

.about-section p {
    color: #fff;
}

/* Spezifisches Padding für die Token Distribution Section */
#tokenomics.section {
    padding-top: 30px;    /* Geändert von 0.5rem auf 30px */
    padding-bottom: 30px; /* Geändert von 0.1rem auf 30px */
}

/* Roadmap Styling */
.roadmap-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 400px;
}

.roadmap-line {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.roadmap-points {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.roadmap-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    transform: translateY(var(--y-offset));
    cursor: pointer;
}

/* Verschiedene Y-Offsets für die Punkte */
.roadmap-point:nth-child(1) { --y-offset: -29px; }
.roadmap-point:nth-child(2) { --y-offset: -57px; }
.roadmap-point:nth-child(3) { --y-offset: 40px; }
.roadmap-point:nth-child(4) { --y-offset: 40px; }
.roadmap-point:nth-child(5) { --y-offset: -18px; }

.point {
    width: 60px;
    height: 60px;
    background: #2C1810;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Chewy', cursive;
    font-size: 24px;
    margin-bottom: 15px;
    border: 3px solid #FFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.roadmap-point:hover .point {
    transform: scale(1.1);
    background: #D12C66;
}

.point-content {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.roadmap-point:hover .point-content {
    border-color: #D12C66;
}

.point-content h3 {
    font-family: 'Chewy', cursive;
    color: #2C1810;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.point-content p {
    color: #2C1810;
    font-family: 'Chewy', cursive;
    font-size: 1.1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .roadmap-container {
        padding: 10px;
        width: 90%;
    }

    .roadmap-points {
        flex-direction: column;
        gap: 30px;
    }

    .roadmap-line {
        display: none;
    }

    .roadmap-point {
        transform: none !important;
        width: 100%;
    }

    .point-content {
        width: 100%;
        max-width: 100%;
    }
}

#about .about-title {
    color: #D12C66;
}

/* Menü-Icon ausblenden wenn Menü aktiv */
.nav-wrapper.active ~ .menu-icon {
    display: none;
}

/* Ticker Section Styles */

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 90deg;
    inherits: false;
}

:root {
    --clr-card: #1f2937;
    --clr-1: #6420aa;
    --clr-2: #ff3ea5;
    --clr-3: #ff7ed4;
}

.ticker-container {
    padding: 2rem 0;
    width: 100%;
}

.ticker-box {
    position: relative;
    background: var(--clr-card);
    border-radius: 0.45rem;
    padding: 1.5rem;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.ticker-box::after,
.ticker-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -0.5rem;
    background: conic-gradient(
        from var(--gradient-angle),
        var(--clr-card),
        var(--clr-1),
        var(--clr-2),
        var(--clr-3),
        var(--clr-2),
        var(--clr-1),
        var(--clr-card)
    );
    border-radius: inherit;
    animation: rotate 15.5s linear infinite;
}

.ticker-box::after {
    filter: blur(1.5rem);
}

@keyframes rotate {
    0% {
        --gradient-angle: 0deg;
    }
    100% {
        --gradient-angle: 360deg;
    }
}

#ticker-code {
    /*font-family: monospace; */
    font-size: 2rem;
    word-break: break-all;
    color: white;
}

#copy-button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    background-color: #FF4500;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#copy-button:hover {
    background-color: #e03c00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ticker-box {
        width: 90%;
    }
    
    #ticker-code {
        font-size: 1.5rem;
    }
}

.counter_container {
    text-align: center;
    margin-top: -25px;
    margin-bottom: 30px;
}

#counter {
    font-size: 4.5rem;
    font-weight: bold;
    color:#2B89AE;
    letter-spacing: 2px;
    text-shadow: rgba(43, 137, 174, 1) 0px 0px 37px;
  }

  .details  {
    margin-top:75px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
  }

  @media (max-width: 768px) {
    .details {
      grid-template-columns: 1fr;
      gap: 40px; /* Optional: Weniger Abstand auf kleineren Geräten */
    }
  }

  .details .details_con {
    place-self: center;
  }

  .details  img {
    width:70px;
    height: 70px;
    margin-bottom:10px;
  }

  .details h4 {
    font-family: 'Chewy', cursive;
    color: #fff;
    font-size:28px;
  }

  .details p {
    color:#2B89AE;
  }

  .headerimg {
    transform: scale(1.0);
    max-width: 100%;
    height: auto;
    position: relative;
    top:35px;
  }

  /* Bars */

  .vertical-progress-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 50px 50px !important;
    padding: 20px;
  }

  .vertical-progress-container img {
    max-width:100px;
  }

  .vertical-progress-container p {
    font-size:20px;
    text-transform: uppercase;
    margin-top:-10px;
  }

  .vertical-progress-container p.number {
    font-size:20px;
    text-transform: uppercase;
    margin-top:5px;
  }
  
  .vertical-bar {
    text-align: center;
  }
  
  .label {
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .bar-track {
    position: relative;
    width: 50px;
    height: 300px;
    background-color: #170B2A;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
  }

   .bar-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, #00f260, #0575e6);
    transition: height 1.5s ease-out;
  }

  .bar-color-1 {
    background: linear-gradient(to top, #5C9C42, #5C9C42) !important;
  }

  .bar-color-2 {
    background: linear-gradient(to top, #1DAEE3, #1DAEE3) !important;
  }

  .bar-color-3 {
    background: linear-gradient(to top, #E2C801, #E2C801) !important;
  }

  .bar-color-4 {
    background: linear-gradient(to top, #D17E3F, #D17E3F) !important;
  }

  .bar-color-5 {
    background: linear-gradient(to top, #818A3B, #818A3B) !important;
  }

  .bar-color-6 {
    background: linear-gradient(to top, #00E9FF, #FF0077) !important;
  }

  @media (max-width: 1024px) {
    #roadmap {
        display:none !important;
    }
}

    @media (max-width: 768px) {
        .section{
            padding-top:30px !important;
            min-height: auto;
        }

        #about.section {
            position: relative;
            top: -31px;
        }

        #home {
            min-height: auto !important;
            padding-bottom: 60px;
            padding-top: 90px !important;
        }

        #ticker {
            position: relative;
            bottom: 295px !important;
        }

        .logo-image {
            max-width: 100%;
        }

        .lightbox-content button {
            display: none !important;
        }

        .naviroadmap {
            display: none;
        }
    }

    @media (min-width: 769px) {
        .headerimg {
            max-width: 600px !important;
        }
    }
  