/* josefin-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/josefin-sans-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* josefin-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/josefin-sans-v32-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

/* Grundlegende Stile */
body {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif; /* Verwende Josefin Sans */
    background-color: #ffffff; /* Sehr helles Beige Hintergrund */
    color: #281e20; /* Dunkelgrauer Text */
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Vertikale Anordnung für Header */
}

h1, h2, h3 {
    color: #ff007f;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.container {
    display: flex; /* Flexbox für die gesamte Seite */
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box; /* Vermeidet Probleme durch Padding */
    flex-direction: row; /* Container in Zeilenrichtung */
    transition: all 0.3s ease;
    padding-top: 50px;
}

.new-item::before {
    content: 'New';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color:#1100ff;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0px;
    z-index: 10;
}


header {
    display: none;
}

.news-desktop {
    display: fixed ;
    margin-left: 20px; 
    z-index: 9999;
}

.header-logo {
    height: 50px;
    cursor: pointer;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none; /* Versteckt auf Desktop */
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Zeigt auf mobilen Geräten */
    }
}

.bio-section {  
    box-sizing: border-box;
    padding: 20px !important; 
}

      /* Hervorhebung */
      .highlight-green {
        color: #00ff6a;
        font-weight: bold;
    }

    .highlight-pink {
        color: #ff007f;
        font-weight: bold;
    }


/* UFO Styling */
#ufoContainer {
    position: absolute;
    width: 100px; /* UFO size */
    z-index: 200; /* UFO is the top-most layer */
    pointer-events: none; /* Prevent UFO from capturing any clicks */
}

/* UFO Styling */
#ufo {
    position: absolute;
    width: 100px; /* UFO size */
    z-index: 200; /* UFO is the top-most layer */
    pointer-events: none; /* Prevent UFO from capturing any clicks */
}

#ufoBeam {
    position: absolute;
    width: 100px; /* UFO size */
    height: 700Px;
    margin-top: 20px; 
    z-index: 10; /* UFO is the top-most layer */
    pointer-events: none; /* Prevent UFO from capturing any clicks */
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px; /* Unterhalb des Headers */
    width: 100%;
    background-color: #ffffff;
    z-index: 999;
}

.mobile-menu.active {
    display: block; /* Sichtbar, wenn die Klasse 'active' hinzugefügt wird */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #eaeaea;
}

.mobile-menu li a {
    text-decoration: none;
    color: #281e20;
    font-size: 16px;
    text-transform: uppercase;
}

.mobile-menu li a:hover {
    color: #00ff6a; /* Leuchtendes, krasses Grün bei Hover */
}

/* Sidebar */
.sidebar {
    width: 250px; /* Breite der Sidebar */
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: calc(100vh - 60px); /* Volle Höhe außer dem Header */
    box-sizing: border-box;
    position: fixed;
    top: 60px; /* Unterhalb des Headers */
    left: 0;
    z-index: 500;
}

.sidebar .logo {
    margin-bottom: 30px;
}

.sidebar .logo img {
    width: 100%;
    height: auto;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav ul li a {
    text-decoration: none;
    color: #281e20;
    font-size: 16px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav ul li a:hover {
    color: #00ff6a; /* Leuchtendes, krasses Grün bei Hover */
}

/* Gallery Container */
.gallery-container {
    flex-grow: 1; /* Nimmt den restlichen Platz ein */
    padding: 20px;
    overflow-y: auto;
    margin-left: 250px; /* Platz für Sidebar */
    max-width: calc(100% - 250px); /* Verhindert Überlappung */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: margin-left 0.3s ease; /* Smooth transition when sidebar is hidden */
}

.gallery-container.sidebar-hidden {
    margin-left: 0; /* No margin when sidebar is hidden */
    max-width: 100%; /* Full width when sidebar is hidden */
}

/* Gallery Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Now supports up to four columns */
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    padding: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    border: 2px solid #00ff6a;
}

.thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.color-palette {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.small {
    width: 400px; 
    height: auto; 
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* Buttons */
.buy-button,
.view-button {
    background-color: #ff007f; /* Krasses Pink */
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    flex: 1;
    margin: 0 5px;
}

.buy-button:hover,
.view-button:hover {
    background-color: #cc0066; /* Noch kräftigeres Pink bei Hover */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dunkleres Overlay */
}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    text-align: center;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.news-ticker {
    width: 100%;
    background: #00ff6a;
    border: 2px dashed;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    padding: 10px 0;
    margin-left: -20px;
}

.news-ticker-content {
    display: inline-block;
    font-size: 22px;
    text-transform: uppercase;
    animation: scroll 15s linear infinite;
}

/* Animation for scrolling effect */
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-container {
    flex-shrink: 0;
    padding-left: 20px;
}

.ticker-logo {
    height: 30px;
    max-height: 40px;
    object-fit: contain; 
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .gallery { 
        grid-template-columns: repeat(3, 1fr); /* Three columns for tablets */
    }
}

@media (max-width: 768px) {

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: fixed;
    top: 45px;
    left: 0; /* Ensure it starts from the left */
    right: 0; /* Ensure it ends at the right */
    z-index: 1000;
    max-width: 100%; /* Prevents overflow */
}

html .container {
    padding-top: 100px; /* Platz für Header */
}

    .sidebar {
        display: none; /* Hide sidebar on mobile */
    }

    .gallery-container {
        margin-left: 0 !important; /* Remove margin when sidebar is hidden */
        max-width: 100%; /* Full width on mobile */
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr); /* Two columns for mobile */
    }

    .button-container {
        flex-direction: column; /* Buttons stacked on smaller devices */
    }

    .buy-button,
    .view-button {
        margin: 5px 0;
        width: 100%;
    }

    .ticker-text {
        font-size: 14px; /* Smaller font for mobile */
    }

    .ticker-logo {
        height: 25px; /* Smaller logo for mobile */
    }
}

/* Nav Small Styling */
.nav_small {
    margin-top: 40px;
}

.nav_small li a {
    line-height: 1;
    font-size: 11px !important;
}

button {
    background: #00ff6a;
    font-size: 22px;
    text-transform: uppercase;
    border: 2px dashed;
}

#halloButton {
    margin-top: 22px; 
}

.secondary-menu li a {
    font-size: 11px; 
}

/* Color Palette and Circles */
.color-palette {
    display: flex; /* Align color circles horizontally */
    justify-content: left; /* Center them */
    align-items: left; /* Center vertically */
}

.color-circle {
    width: 30px; /* Size of each circle */
    height: 30px; /* Make them round */
    cursor: pointer; /* Change cursor on hover */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.color-circle:hover {
    transform: scale(1.2); /* Scale up on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* More shadow on hover */
}

body.anfrage {
    width: 60%;
    padding: 40px; 
}

nav#mobileMenu {
    position: absolute;
    top: 122px !important;
}

/* Fixed "Say Hello" Button */
#halloButton {
    position: fixed; /* Fixed position at the bottom */
    bottom: 18px; /* 20px from the bottom */
    right: 20px; /* 20px from the right */
    background-color: #ff007f; /* Button background color */
    color: #ffffff; /* Text color */
    border: none; /* Remove default button border */
    padding: 4px 8px; /* Padding for button */
    font-size: 18px; /* Font size */
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    cursor: pointer; /* Pointer cursor on hover */
    z-index: 1000; /* Ensure it stays on top of other elements */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
    display: none;
}

/* Button hover effect */
#halloButton:hover {
    background-color: #cc0066; /* Darker pink on hover */
    transform: scale(1.05); /* Slightly bigger on hover */
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    #halloButton {
        bottom: 10px; /* Adjust spacing for smaller screens */
        right: 10px;
        width: 40%; /* Button width on smaller screens */
        left: 60%; /* Center horizontally */
        transform: translateX(-50%); /* Center the button */
        padding: 12px 20px; /* Adjust padding for smaller screens */
        font-size: 16px; /* Smaller font size */
    }
}

/* Modal styles (for completeness) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    z-index: 1000; /* On top of other elements */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity for background */
}

.modal-content {
    background-color: #ffffff; /* White background for modal */
    margin: 15% auto; /* Center vertically */
    padding: 20px; /* Padding around content */
    border-radius: 5px; /* Rounded corners */
    width: 80%; /* Modal width */
    max-width: 500px; /* Maximum width */
    text-align: center; /* Center text */
}

.close {
    color: #aaaaaa; /* Close button color */
    float: right; /* Align to the right */
    font-size: 28px; /* Larger font size */
    font-weight: bold; /* Bold font */
    cursor: pointer; /* Pointer cursor on hover */
}
/* Animated and Big Style for #helloResponse */
#helloResponse {

    font-size: 24px; /* Large font size */
    color: #00ff6a; /* Bright green color */
    font-weight: bold; /* Bold text */
    text-align: center; /* Centered text */
    padding: 10px 20px; /* Padding around the text */
    z-index: 1001; /* Highest z-index to ensure it is above everything */
}

/* Pop-up animation to make the response appear bigger */
@keyframes popUp {
    0% {
        transform: scale(0.5); /* Start smaller */
        opacity: 0; /* Start hidden */
    }
    100% {
        transform: scale(1.2); /* Slightly bigger */
        opacity: 1; /* Fully visible */
    }
}

/* Fade-in animation for a subtle effect after pop-up */
@keyframes fadeIn {
    0% {
        opacity: 0.8; /* Less visible */
    }
    100% {
        opacity: 1; /* Fully visible */
    }
}

.lb-data .lb-caption {
    display: none !important;
}

/* Fade effect for page transitions */
.fade-in {
    animation: fadeIn 0.5s forwards; /* Adjust duration as needed */
    opacity: 0; /* Start invisible */
}

.fade-out {
    animation: fadeOut 0.5s forwards; /* Adjust duration as needed */
    opacity: 1; /* Start fully visible */
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Fade-out animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Overlay für den dunklen Hintergrund */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dunkler transparenter Hintergrund */
    z-index: 10000; /* Höchste Priorität */
}


/* UFO Styling */
#ufo2 {
    width: 380px;
    position: absolute;
    z-index: 99999999;
}

/* Beam with softer glow and reduced blur, without clip-path */
#ufoBeam2 {
    width: 380px;
    height: 400px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.5), rgba(87, 81, 249, 0.4) 70%, transparent); /* Slightly reduced color intensity */
    margin: 0 auto;
    position: absolute;
    top: 60px;
    box-shadow: 0 0 50px 20px rgba(170, 125, 255, 0.3), 
                0 0 120px 50px rgba(255, 85, 133, 0.2), 
                0 0 200px 80px rgba(183, 68, 255, 0.15); /* Reduced shadow intensity */
    filter: blur(35px); /* Softer blur */
    animation: softGlow 1.5s infinite alternate;
    z-index: 10000;
    transition: height 0.5s ease;
}

/* Softer glow animation */
@keyframes softGlow {
    0% {
        box-shadow: 0 0 60px 15px rgba(28, 179, 255, 0.4),
                    0 0 100px 40px rgba(27, 114, 255, 0.25),
                    0 0 150px 60px rgba(55, 215, 255, 0.15); /* Reduced glow intensity */
        filter: blur(20px); /* Softer starting blur */
    }
    100% {
        box-shadow: 0 0 80px 25px rgba(64, 201, 255, 0.5),
                    0 0 180px 70px rgba(55, 0, 255, 0.35),
                    0 0 250px 100px rgba(187, 0, 255, 0.2); /* Less intense end glow */
        filter: blur(30px); /* Softer peak blur */
    }
}


/* UFO- und Beam-Schwebeanimation */
#ufoContainer2 {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    transition: top 1.5s ease-in-out;
    z-index: 10001;
    animation: hoverUfo 2s infinite ease-in-out;
    width: 380px;
}

/* Schwebeanimation */
@keyframes hoverUfo {
    0% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        transform: translateX(-50%) translateY(0px);
    }
}


/* Popup-Design */
#popup2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 10002;
}


/* Base styling for Alien Mode */
.alien-mode {
    background-color: #01020a; /* Dark, eerie background */
    color: #00ffcc; /* Neon green text */
    font-family: 'Courier New', monospace; /* Monospace, techy font */
    cursor: url('path/to/alien-cursor.png'), auto; /* Custom alien cursor */
}

/* Alien-themed text styles */
.alien-mode h1, .alien-mode h2, .alien-mode h3, .alien-mode p, .alien-mode a, .alien-mode span, .alien-mode div {
    font-family: 'Monospace', sans-serif;
    color: #ff007f; /* Alien pink */
    text-shadow: 0 0 8px rgba(0, 255, 150, 0.8), 0 0 4px rgba(255, 0, 128, 0.8); /* Glowing shadow */
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: blur(0.5px) brightness(1.5); /* Slightly blurry, bright text */
}

/* Patterned image frames */
.alien-mode img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid rgba(255, 0, 150, 0.5); /* Neon pink border */
    filter: blur(3px) contrast(1.5);
}

/* Alien-style navigation */
.alien-mode nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 20, 0.95); /* Darker background */
    border: 2px solid rgba(0, 255, 150, 0.6);
    padding: 20px;
    margin: 20px auto;
}

.alien-mode nav a {
    color: #00ffcc;
    font-size: 1.2em;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(0, 20, 30, 0.7);
    box-shadow: 0 0 5px rgba(255, 85, 133, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.alien-mode nav a:hover {
    background: rgba(255, 0, 128, 0.8);
    transform: scale(1.1) rotate(3deg);
}

/* Cryptic button styling */
.alien-mode button {
    background-color: #001540;
    color: #ff007f;
    font-size: 16px;
    border: 1px solid rgba(0, 255, 150, 0.5);
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 150, 0.8);
}

.alien-mode button:hover {
    background-color: rgba(10, 10, 50, 0.8);
    color: #00ffcc;
}

/* Alien-mode overlay effect */
.alien-mode #overlay {
    background-color: rgba(0, 5, 10, 0.9);
    backdrop-filter: blur(6px); /* More intense blur */
}
