/* Grundreset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.site-header {
    background: #073b4c;
    color: white;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}
.logo { font-size: 1.6rem; font-weight: bold; }
.menu { list-style: none; display: flex; gap: 20px; }
.menu a { text-decoration: none; color: white; transition: 0.3s; }
.menu a:hover { color: #ffd166; }

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.hero-overlay {
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 400px;
}
.hero-text { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards; }
.hero-text:nth-child(1) { animation-delay: 0.3s; }
.hero-text:nth-child(2) { animation-delay: 0.6s; }
.hero-text:nth-child(3) { animation-delay: 0.9s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.btn-main { background: #ffd166; color: #073b4c; padding:10px 25px; border-radius:5px; font-weight:bold; text-decoration:none; transition:0.3s; }
.btn-main:hover { background:#f4ac2a; }

/* Über mich Sektion */
.section-about { background: #e0f7fa; padding:80px 20px; }
.about-container { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:50px; }
.about-text { max-width:500px; }
.about-image img { width:100%; border-radius:15px; box-shadow:0 10px 30px rgba(0,0,0,0.2); }

/* Hobbys Cards */
.section-light { padding:80px 20px; background: linear-gradient(135deg,#f0f8ff,#ffffff); text-align:center; }
.cards { display:flex; justify-content:center; gap:30px; flex-wrap:wrap; margin-top:30px; }
.card { background: rgba(255,255,255,0.95); padding:25px; border-radius:12px; width:300px; box-shadow:0 8px 20px rgba(0,0,0,0.2); transition: transform 0.5s, box-shadow 0.5s; cursor:pointer; }
.card:hover { transform: translateY(-15px) rotate(-1deg); box-shadow:0 15px 30px rgba(0,0,0,0.3); }
.card h3 i { margin-right:10px; }

/* Social Media */
.section-dark { background: #073b4c; color:white; text-align:center; padding:80px 20px; }
.social-links { display:flex; justify-content:center; gap:35px; margin-top:20px; }
.social-links a { color:#ffd166; font-size:2.5rem; transition:0.3s; }
.social-links a:hover { transform:scale(1.3); color:#ffffff; }

/* Kontakt */
form { display:flex; flex-direction:column; gap:15px; max-width:500px; margin:auto; }
input,textarea { padding:12px; border-radius:5px; border:1px solid #ccc; }
button { padding:12px; background:#073b4c; color:white; border:none; border-radius:5px; font-weight:bold; cursor:pointer; transition:0.3s; }
button:hover { background:#05516a; }

/* Footer */
.footer-dark { background:#073b4c; color:white; text-align:center; padding:20px; }

/* Fade-In Scroll */
.fade-in { opacity:0; transform:translateY(50px); transition:all 0.8s ease-out; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* Responsive */
@media (max-width:768px){
    .navbar { flex-direction:column; gap:10px; }
    .cards { flex-direction:column; gap:20px; }
    .about-container { flex-direction:column; }
    .hero-overlay { margin-top:200px; }
}
