/* Hauptcontainer */
.main-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}

/* Farbiger Hintergrund */
.color-underlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #83B4FF; 
    
}

/* Willkommen Sektion */
.welcome-section {
    padding: 20px;
    background-color: rgba(179, 210, 255, 0.829); 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.329);
    text-align: center;
    position: relative;
    
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-left: 50px;
}

.profile-card {
    background-color: #ffffff; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center;
    max-width: 300px;
    margin-right: 0 auto;
}

.profile-image img {
    border-radius: 50%;
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-info h2 {
    color: #1A2130;
    margin: 10px 0;
    font-size: 1.5em;
    font-family: 'Arial', sans-serif; 
}

.profile-info p {
    color: #4a4a4a; 
    font-size: 1.2em; 
    font-family: 'Arial', sans-serif;
    
}

.welcome-text {
    max-width: 500px;
    margin: 0 auto;
}

.welcome-text h1 {
    font-size: 2.5em;
    color: #1A2130;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif; 
}

.welcome-text p {
    font-size: 1.2em;
    color: #4A4A4A; 
    font-family: 'Arial', sans-serif; 
}

.action-buttons {
    margin: 20px 0;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif; 
}

.btn-primary {
    background-color: #4780d6;
    color: #FFF;
}

.btn-primary:hover {
    background-color: #3b5992;
}

.btn-secondary {
    background-color: #FFF;
    color: #4780d6; 
    border: 2px solid #4780d6; 
}

.btn-secondary:hover {
    background-color: #4780d6;
    color: #FFF;
}

.welcome-description {
    color: #1A2130;
    font-size: 1.2em; 
    font-family: 'Arial', sans-serif; 
}


/* Responsive Design */
@media (max-width: 820px) {
    .welcome-container {
        flex-direction: column;
        align-items: center;
        margin: auto;
        margin-left: 0;
    }

    .welcome-description{
        display: flex;
        flex-wrap: wrap;
    }

    .profile-card {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .welcome-text {
        text-align: center;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        margin-right: 0;
        margin-bottom: 10px;
        width: 80%;
    }
}

@media (max-width: 460px) {
    .welcome-container {
        flex-direction: column;
        align-items: center;
    }

    .welcome-description{
        display: flex;
        flex-wrap: wrap;
    }

    .profile-card {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .welcome-text {
        text-align: center;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50%;
    }
}

@media (max-width: 350px) {
    .main-container, .welcome-section, .main-index-container,
    .body-page-container, .profile-card {
        margin: 0;
        padding: 5px;
    }
    
    .profile-card {
        position: relative;
        max-width: 180px;
        margin-top: 10px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .welcome-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .welcome-description{
        display: flex;
        flex-wrap: wrap;
        flex-shrink: initial;
    }

    .welcome-text {
        text-align: center;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        margin-right: 0;
        margin-bottom: 10px;
        width: 40%;
    }
}