/*
Theme Name: Dein Theme Child
Template: blankslate
Author: Dein Name
Description: Ein Child-Theme basierend auf Blankslate
Version: 1.0
*/

/* Hier beginnt dein CSS-Code */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #2b2b2b;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
}

/* Header mit Logo */
header {
    text-align: center;
    margin-bottom: 40px;
}

header .logo {
    animation: subtleBreathe 4s infinite;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

@keyframes subtleBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.7);
}

/* Layout: Left and Right Columns */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.left, .right {
    flex: 1;
}

.left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right {
    text-align: left;
}

/* Headline */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 20px;
}

h1 .highlight {
    color: #ff4d4d;
}

/* Subtitle */
.subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #ff4d4d;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 0px;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: #e64545;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.social-icons img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Profile Image */
.profile-image {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.7);
}

/* Progressbar Section */
#progress-container {
    margin-top: 30px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 10px;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #ff4d4d;
    animation: smoothLoad 12s ease-out infinite;
    border-radius: 5px;
}

@keyframes smoothLoad {
    0% {
        width: 0%;
    }
    90% {
        width: 90%;
    }
    100% {
        width: 90%;
    }
}

/* Progress Text */
.progress-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    margin-top: 20px;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaaaaa;
    padding: 10px 0;
    border: none;
}

footer p {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

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

footer a:hover {
    color: #ff4d4d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 20px;
    }

    .left, .right {
        flex: unset;
        text-align: center;
    }

    .profile-image {
        max-width: 250px;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }

    footer p {
        font-size: 0.8rem;
    }
}