/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

/* Header */
header {
    position: fixed;
    top:0; left:0;
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 50px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style:none;
    display:flex;
    gap: 30px;
}

nav ul li a {
    text-decoration:none;
    font-weight:bold;
    color: #ffb366;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a::after {
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#ffb366;
    bottom:-5px;
    left:0;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width:100%;
}

/* Slider */
.slider {
    position: relative;
    margin-top: 120px; /* Platz für Header */
    overflow: hidden;
    max-width: 100%;
    height: 80vh;
}

.slide {
    position: absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity:1;
}

.slide img {
    width:100%;
    height:100%;
    object-fit: cover;
}

.next-btn {
    position: absolute;
    top:50%;
    right:30px;
    transform: translateY(-50%);
    background: rgba(255,180,102,0.8);
    border:none;
    font-size:2rem;
    color:#fff;
    padding:10px 15px;
    cursor:pointer;
    border-radius:10px;
    transition: all 0.3s ease;
}

.next-btn:hover {
    background: #ff9900;
}

/* Footer */
footer {
    background:#222;
    color:#fff;
    text-align:center;
    padding:20px 0;
}

footer ul {
    list-style:none;
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:10px;
}

footer ul li a {
    color:#ffb366;
    text-decoration:none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity:0; transform:translateY(-20px); }
    to { opacity:1; transform:translateY(0); }
}
