/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

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

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1b1b2f;
}

.logo {
    font-family: 'Sriracha', cursive;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
}

.nav__links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav__links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__links a:hover {
    color: #5edaf0;
}

.cta {
    padding: 10px 20px;
    background-color: #5edaf0;
    color: #1b1b2f;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta:hover {
    background-color: #42c6e0;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: url('Sonne.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 12px 30px;
    background-color: #5edaf0;
    color: #1b1b2f;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Achievements */
.achievements {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.achievement {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.achievement i {
    font-size: 40px;
    color: #5edaf0;
    margin-bottom: 15px;
}

.achievement h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* About Me */
.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.about-me-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-me-text p {
    font-size: 18px;
    max-width: 600px;
}

/* Footer */
.footer {
    background-color: #1b1b2f;
    color: #fff;
    padding: 30px 50px;
    text-align: center;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #5edaf0;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #42c6e0;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    .nav__links {
        flex-direction: column;
        gap: 10px;
    }
    .achievements {
        flex-direction: column;
        align-items: center;
    }
}
