
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
    backdrop-filter: blur(8px);
}
.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ff5c00;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #ff2e9d;
}

/* Hero Section */

.hero {
    background: url('../images/hero-bg.jpg') center center no-repeat;
    background-size: cover;
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #ff5c00;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem;
    color: #eee;
    margin-bottom: 2rem;
}
.btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff2e9d, #ff5c00);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #ff2e9d;
}

/* Menü Sektion */
.menu {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
    text-align: center;
}
.menu h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff2e9d;
}
.menu-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.menu-image {
    max-width: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 92, 0, 0.2);
    transition: transform 0.3s ease;
}
.menu-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.menu-image:hover img {
    transform: scale(1.05);
}

.footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

.footer a {
    color: #ff5c00;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.about {
    background-color: #0a0a0a;
    color: #fff;
    padding: 4rem 2rem;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-content .text {
    flex: 1;
}
.about-content .image {
    flex: 1;
    text-align: center;
}
.about-content .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 92, 0, 0.3);
}
.about h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff5c00;
}
.about p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1rem;
}
.about .hours {
    margin-top: 2rem;
    font-size: 1rem;
}
.about .hours h3 {
    font-size: 1.5rem;
    color: #00f0ff;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    .about-content .text {
        padding-right: 2rem;
    }
}

.gallery {
    padding: 4rem 2rem;
    background-color: #111;
    color: #fff;
    text-align: center;
}
.gallery h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #00f0ff;
    margin-bottom: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.3);
}


@media (max-width: 768px) {
    .hero {
        background-image: url('../images/hero-bg-mobile.jpg');
        height: 60vh;
        background-size: cover;
        background-position: center;
    }

    .overlay {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

/* Logo zentrieren */
.navbar {
    justify-content: center;
}

.navbar .logo {
    position: relative;
    left: 0;
    transform: none;
}
