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

body {
    font-family: Arial, sans-serif;
    background-color: #6E6E6E;
    color: #222;
}

/* NAVBAR (Sticky + Zentriert) */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #F0F0F0;
    padding: 15px 0;

    display: flex;
    justify-content: center;

    transition: box-shadow 0.3s ease;
}

/* Container für Logo + Navigation */
.nav-inner {
    display: flex;
    align-items: center;
    gap: 150px; /* Abstand zwischen Logo und Menü */
}

/* LOGO */

.logo img {
    height: 80px;
    transform: scale(1.8);   /* zoomt rein */
    transform-origin: left center;
}

/* NAVIGATION */
.nav-inner ul {
    list-style: none;
}

.nav-inner ul li {
    display: inline-block;
    margin: 0 15px;
}

.nav-inner ul li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

/* Hover Effekt */
.nav-inner ul li a:hover {
    opacity: 0.6;
}

/* OPTIONAL: Schatten beim Scrollen */
.navbar.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
/* HERO */
.hero {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    border: 5px solid #fff;
    padding: 40px;
    background: #F0F0F0;
}

/* TEXT */
.text {
    flex: 1;
    padding-right: 40px;
}

.text h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.social span {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.icons i {
    margin-right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* IMAGE */
.image {
    flex: 1;
padding-right: 40px;
}

.image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.image h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.image p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}



/* RESPONSIVE */
@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }

    .text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .text h1 {
        font-size: 40px;
    }
}
.page {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.page h1 {
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* CARDS */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.logo img {
    height: 40px;
}



/* BURGER BUTTON */
.burger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .nav-inner {
        justify-content: space-between;
        width: 90%;
    }

    /* Burger anzeigen */
    .burger {
        display: block;
    }

    /* Menü verstecken */
    #nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #F0F0F0;

        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    /* Menü aktiv */
    #nav-menu.active {
        display: flex;
    }

    #nav-menu li {
        display: block;
        margin: 15px 0;
    }

    /* Logo kleiner */
    .logo img {
        height: 50px;
        transform: scale(1);
    }


    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

