body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* ---------- Navbar ---------- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: #ffffff;
    border-bottom: 3px solid #000000;
}

.logo img {
    height: 50px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #b48b31; /* z. B. Gold-Ton für Hover */
}

/* ---------- Buttons in der Navbar ---------- */
.nav-buttons .btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold;
    font-size: 0.95rem;
}

.nav-buttons .btn-primary {
    background-color: #28a745;
    color: white;
}

.nav-buttons .btn-primary:hover {
    background-color: #218838;
}

.nav-buttons .btn-secondary {
    background-color: #f8f9fa;
    color: #333;
}

.nav-buttons .btn-secondary:hover {
    background-color: #e9ecef;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-buttons .btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    margin: 10px 5px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #f39c12;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

.hero-buttons .btn-secondary {
    background-color: #f8f9fa;
    color: #333;
}

.hero-buttons .btn-secondary:hover {
    background-color: #e9ecef;
}

/* ---------- Sektionen ---------- */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* ---------- Öffnungszeiten & Kontakt ---------- */
.horarios {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
}

.horarios li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 350px;
    padding: 5px 0;
}

.wochentag {
    font-weight: bold;
    white-space: nowrap;
}

.zeit {
    background-color: #f0f0f0;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    font-size: 16px;
}

.contact-info i {
    margin-right: 10px;
    color: #333;
    font-size: 18px;
}

.contact-info a {
    color: #5B37D0;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ---------- Galerie ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;       
    object-fit: cover;   
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ---------- Lightbox ---------- */
.lightbox-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-content:target {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.lightbox-content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    z-index: 1100;
}

.lightbox-content .close:hover {
    color: red;
    transform: scale(1.2);
}

/* ---------- Animation ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .gallery img {
        height: 220px;   
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 200px;   /* kompakter auf Mobilgeräten */
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
}