/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Akrobat', Arial, sans-serif;
    background-color: #1A1A1A; /* Dunkelgrauer Hintergrund */
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;	
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.header:hover {
    background: rgba(0, 0, 0, 0.9);
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo span {
    color: #FFFFFF;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav ul li a:hover {
    background-color: #FFD700;
    color: #0F0F0F;
    transform: scale(1.1);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(45deg, #FFD700, #B8860B, #FF8C00, #696969);
    background-size: 400% 400%;
    animation: gradient 12s infinite;
    position: relative;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #FFD700, #B8860B, #FF8C00, #696969);
    color: #0F0F0F;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero .btn:hover {
    background-color: #FFF;
    transform: scale(1.1);
}

/* Section */
.section {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.section h2 {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 30px;
}

.section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #CCCCCC;
}

/* Galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px;
}

.gallery img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

/* Popout Modal */
.modal {
    display: none; /* Unsichtbar bis geöffnet */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dunkler Hintergrund */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FFD700;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal .close:hover {
    color: #FFF;
}

/* Footer */
.footer {
    background: #191919;
    color: #CCCCCC;
    padding: 30px;
    font-size: 16px;
    text-align: center;
    border-top: 2px solid #FFD700;
}

/* Hintergrundanimation */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

