* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1A3C1A;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1A3C1A;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #E67E22;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Startseite */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    background: rgba(26, 60, 26, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: slideUp 1s ease-out;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #E67E22;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
    background: #1A3C1A;
    transform: scale(1.05);
}

.transition-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #E67E22;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Abschnitte */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    position: relative;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

h2:not(.about-section h2) {
    color: #fff;
}

h2:not(.about-section h2):hover {
    color: #E67E22;
}

/* Wer wir sind */
.about-section {
    background: #E67E22;
    padding: 4rem 2rem;
}

.about-section h2 {
    color: #1A3C1A;
    margin-bottom: 1rem;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.chef-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1A3C1A;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.contact-info .chef-photo {
    border: 4px solid #E67E22;
}

.chef-photo:hover {
    transform: scale(1.1);
}

.about-section p {
    max-width: 600px;
    font-size: 1.2rem;
    color: #1A3C1A;
}

/* Dienstleistungen */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 250px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card-front {
    background: rgba(255, 255, 255, 0.1);
}

.card-back {
    background: #E67E22;
    color: #1A3C1A;
    transform: rotateY(180deg);
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 1rem;
}

.card-back p {
    font-size: 1rem;
    margin: 0;
}

.services-button {
    text-align: center;
    margin-top: 3rem;
}

/* Projekte */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card img:hover {
    transform: scale(1.05);
}

.project-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E67E22;
    margin: 1rem 0;
}

.project-card p {
    font-size: 1rem;
    padding: 0 1rem 1rem;
}

/* Kontakt */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    max-width: 400px;
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 1.2rem;
    margin: 0.8rem 0;
    border: 2px solid #E67E22;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

.privacy-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #fff;
    margin: 0.8rem 0;
}

.privacy-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.privacy-label span {
    line-height: 1.2;
}

.privacy-label a {
    color: #E67E22;
    text-decoration: underline;
}

.privacy-label a:hover {
    color: #fff;
}

button {
    width: 100%;
    padding: 1.2rem;
    background: #E67E22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #1A3C1A;
    transform: scale(1.05);
}

/* Datenschutz */
.datenschutz-section {
    padding: 8rem 2rem 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: #1A3C1A;
}

.datenschutz-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.datenschutz-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E67E22;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.datenschutz-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.datenschutz-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #1A3C1A;
    border-top: 1px solid #E67E22;
}

footer a {
    color: #E67E22;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1A3C1A;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .btn {
        padding: 0.8rem 2rem;
    }
    .section {
        padding: 4rem 1rem;
    }
    .datenschutz-section {
        padding: 6rem 1rem 4rem 1rem;
    }
    h2 {
        font-size: 2rem;
    }
    .about-section {
        padding: 3rem 1rem;
    }
    .chef-photo {
        width: 200px;
        height: 200px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .project-card img {
        height: 200px;
    }
    .datenschutz-section h1 {
        font-size: 2rem;
    }
    .datenschutz-section h2 {
        font-size: 1.6rem;
    }
    .datenschutz-section h3 {
        font-size: 1.2rem;
    }
    .datenschutz-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.6rem 1.5rem;
    }
    .section {
        padding: 3rem 0.5rem;
    }
    .datenschutz-section {
        padding: 5rem 0.5rem 3rem 0.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .chef-photo {
        width: 150px;
        height: 150px;
    }
    input, textarea {
        padding: 0.8rem;
    }
    button {
        padding: 0.8rem;
    }
    .privacy-label {
        font-size: 0.8rem;
    }
    .datenschutz-section h1 {
        font-size: 1.5rem;
    }
    .datenschutz-section h2 {
        font-size: 1.4rem;
    }
    .datenschutz-section h3 {
        font-size: 1.1rem;
    }
    .datenschutz-section p {
        font-size: 0.9rem;
    }
}