/* Schriftart von Google laden */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Grundeinstellungen für die gesamte Seite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #121e3a; /* Dunkelblaues Design */
    color: white;
    overflow-x: hidden;
}

/* Header-Design */
header {
    background-color: #1e2a3a;
    width: 100%;
    position: fixed; 
    top: 0; left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.logo {
    color: #4ecdc4; /* Türkis */
    font-size: 32px; /* Etwas größer */
    font-weight: 700;
    text-decoration: none;
}

.navigation a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 20px; /* Schrift vergrößert */
    margin-left: 30px;
    transition: 0.3s;
}

.navigation a:hover {
    color: #4ecdc4;
}

/* Hero Sektion (index.html) */
.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10% 0 10%;
    gap: 60px;
}

/* Schriftgrößen im Hero-Bereich vergrößert */
.content h2 { font-size: 85px; font-weight: 700; line-height: 1.1; }
.content h2 span { color: #4ecdc4; }
.content h3 { font-size: 38px; color: #94a3b8; margin-bottom: 25px; }
.content p { font-size: 23px; color: #cbd5e1; line-height: 1.8; max-width: 750px; margin-bottom: 40px; }

/* Buttons */
.main-btn {
    background-color: #4ecdc4;
    color: #1e2a3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px; /* Größerer Font für Buttons */
    padding: 18px 45px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
}

.main-btn:hover {
    background-color: #ff6b6b; 
    color: white;
    transform: scale(1.05);
}

/* SOCIAL ICONS - Wiederhergestellt wie am Anfang (Groß & Weiß) */
.social-icons {
    margin-top: 35px;
    display: flex;
    gap: 35px;
}

.social-icons a {
    color: white;         /* Icons wieder weiß statt lila */
    font-size: 48px;      /* Große Icons wie im ersten Bild */
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #4ecdc4;       
    transform: translateY(-5px);
}

/* Foto-Design */
.foto-container img {
    width: 450px; /* Leicht vergrößert */
    border-radius: 20px;
    border: 4px solid #4ecdc4;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Unterseiten Design */
.about-page {
    padding: 160px 10% 80px 10%; 
    min-height: 100vh;
}

.section-title { font-size: 55px; text-align: center; margin-bottom: 50px; }
.section-title span { color: #4ecdc4; }

.about-intro h3 { font-size: 35px; color: #4ecdc4; margin-bottom: 20px; }
.about-intro p, .about-bottom p { font-size: 23px; line-height: 1.8; color: #cbd5e1; }

/* Skill-Cards */
.toolbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.skill-card {
    background-color: #1e2a3a;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
}

.skill-card i { font-size: 55px; color: #4ecdc4; margin-bottom: 25px; }
.skill-card h4 { font-size: 28px; margin-bottom: 15px; }
.skill-card p { font-size: 20px; color: #94a3b8; }

.about-bottom h3 { font-size: 32px; margin-bottom: 20px; }/* :vidoc 74a1347b-fa33-4550-a7ae-f8174d7d4019.mp4 */