/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;700&display=swap');

:root {
    --accent: #00ff88; /* grüner Glow */
    --text-light: #e0e0e0;
    --bg-dark: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.95);
}

/* Basis */
body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Hintergrund-Logo */
.logo-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('/logo.png') center center no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
}

/* Topbar */
.topbar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: rgba(20, 20, 20, 0.9);
    padding: 1rem 0;
    border-bottom: 2px solid #333;
}

.topbar a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s, text-shadow 0.3s;
}

.topbar a:hover {
    color: var(--accent);
    text-shadow: 0 0 6px var(--accent), 0 0 12px var(--accent);
}

/* Hero Section */
.hero {
    background: url('/public/logo.png') no-repeat center center/cover; /* Set a cool background image */
    padding: 10rem 2rem 4rem;
    color: var(--text-light);
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 6px var(--accent), 0 0 12px var(--accent);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 6px;
}

.cta-button:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* About Section */
.about {
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgba(20, 20, 20, 0.9);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 4px var(--accent);
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background: rgba(20, 20, 20, 0.85);
    padding: 3rem 2rem;
    color: var(--text-light);
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.testimonial {
    background: var(--card-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px var(--accent), 0 0 48px var(--accent);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonial span {
    font-size: 1.1rem;
    color: var(--accent);
    display: block;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: rgba(20, 20, 20, 0.9);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-light);
}

footer p {
    margin: 0;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.3rem;
}

.social-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 6px var(--accent), 0 0 12px var(--accent);
}

/* General Styling for Buttons (for reuse) */
.btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    text-shadow: none;
}

/* SwitzerLAN Hotel */
/* Hero Intro */
.switzerlan-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.switzerlan-intro h1 {
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 6px var(--accent), 0 0 12px var(--accent);
}

.switzerlan-intro p {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: var(--text-light);
}

/* SwitzerLAN Info */
.switzerlan-info {
    text-align: center;
    margin-bottom: 4rem;
}

.switzerlan-info h2 {
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 0 4px var(--accent);
    margin-bottom: 1rem;
}

.switzerlan-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Hotel Bereich */
.switzerlan-hotel {
    text-align: center;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 12px;
    border: 1px solid #444;
    margin-top: 3rem;
}

.switzerlan-hotel h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.switzerlan-hotel p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Galerie */
.hotel-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hotel-gallery figure {
    max-width: 400px;
    text-align: center;
    background: rgba(30, 30, 30, 0.85);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #444;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-gallery figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent);
}

.hotel-gallery img {
    max-width: 100%;
    border-radius: 8px;
}

.hotel-gallery figcaption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #bbb;
}

.media-section {
    padding: 3rem 2rem;
    text-align: center;
}

.year-selector {
    margin: 2rem 0;
}

.year-btn {
    background: transparent;
    border: 2px solid #00ff99;
    color: #e0e0e0;
    padding: 0.6rem 1.2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.year-btn:hover, .year-btn.active {
    background: #00ff99;
    color: #0a0a0a;
    text-shadow: none;
}

.gallery {
    display: none;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery.active {
    display: flex;
}

.gallery figure {
    max-width: 300px;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #333;
    box-shadow: 0 0 12px #00ff99, 0 0 24px #00ff99;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ff99, 0 0 40px #00ff99;
}

.gallery img {
    max-width: 100%;
    border-radius: 8px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-gallery iframe {
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}
