:root {
    --primary-color: #57FF82;
    /* Neon Green from Padel/W3Padel vibe */
    --secondary-color: #000000;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --bg-color: #0a0a0a;
    --bg-card: #141414;
    --accent-blue: #00f3ff;
    --font-main: 'Outfit', sans-serif;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.primary-btn:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(87, 255, 130, 0.5);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

#nav-menu ul {
    display: flex;
    gap: 2rem;
}

#nav-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

#nav-menu a:hover {
    color: var(--bg-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../assets/IMG_6732.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(87, 255, 130, 0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.marquee-container {
    margin-top: 3rem;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(90deg, #ff6b9d, #ffa07a, #ffd700, #98fb98, #87ceeb, #dda0dd);
    background-size: 200% 100%;
    animation: gradient-shift 8s ease infinite;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.marquee span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 2rem;
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

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

/* About */
.about-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-text {
    max-width: 800px;
    font-size: 1.2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-color);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Square aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact */
.contact-wrapper {
    text-align: center;
}

.contact-wrapper p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Pages (Impressum/Datenschutz) */
.page-content {
    margin-top: 80px;
    /* Header height */
    padding: 4rem 0;
    min-height: 80vh;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.legal-text h1 {
    margin-bottom: 2rem;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-text p {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--text-color);
        transition: 0.3s;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    #nav-menu.active {
        right: 0;
    }

    #nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    #nav-menu a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}