
 /*---------------------Allgemein---------------------*/ 
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f1f5f9;
            color: #333;
            overflow-x: hidden;
        }
 /*---------------------Allgemein---------------------*/

/*---------------------Menü---------------------*/  
        nav {
            top: 0;
            background-color: #0B2A7A;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav a {
            color: white;
            margin: 0 20px;
            text-decoration: none;
            font-weight: 600;
        }

        nav a:hover {
            text-decoration: underline;
        }
/*---------------------Menü---------------------*/ 

/*---------------------Logo und Titel---------------------*/           
        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 60px;
            height: 40px;
            margin-right: 30px;
        }

        .logo h1 {
            margin: 0;
            font-size: 24px;
            color: #ffffff;
        }
/*---------------------Logo und Titel---------------------*/  

/*---------------------Slogan---------------------*/   
        h1.slogan {
            text-align: center;
            background-color: #ffffff;
            color: #0B2A7A;
            padding: 40px 20px;
            font-size: 36px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 20px;
        }
/*---------------------Slogan---------------------*/   

/*---------------------Sektionen---------------------*/   
        section {
            padding: 100px 20px;
            text-align: center;
            background-color: white;
            margin-bottom: 40px;
            border-radius: 10px;
        }

        section img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
/*---------------------Sektionen---------------------*/   

/*---------------------Besondere Sektionen---------------------*/   
        #ueber-mich {
            background-color: #cfe2ff; /* Helles Blau */
        }

        #persoenliche-erfolge {
            background-color: #b3cde0; /* Zartes Blau */
        }

        #angebot {
            background-color: #99b3d6; /* Blau-Grün */
        }

        #kontakt {
            background-color: #80aaff; /* Helles Blau */
        }

        h2,h3 {
            color: #0B2A7A; /* Dunkles Blau */
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        ul li {
            padding: 8px 0;
            font-size: 18px;
        }

        p{
            margin-top: 30px;
            margin-bottom: 60px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .d-flex{
            display: flex; 
        }
        .flexd-col{
            flex-direction: column;
        }
/*---------------------Besondere Sektionen---------------------*/     

/*---------------------Erfolge---------------------*/        
        .erfolge{
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 40px; 
            height:400px;
        }

       .erfolge-img{
            border-radius: 10px; 
            width:100%;
            object-fit: contain;
       }

       .erfolge-img-container{
            display:flex;
            border-radius: 10px;
            width: 45%;
            height:100%;
            background-color: #0B2A7A;
       }

       .erfolge-listing{
            display: flex; 
            justify-content: center; 
            align-items: center; 
            flex-direction:column; 
            width: 45%; 
            padding: 20px; 
            background-color: #f4f4f4; 
            border-radius: 10px;
            height:90%;
       }

       .pbs{
            text-decoration: none;
       }
/*---------------------Erfolge---------------------*/ 

/*---------------------Angebote---------------------*/ 
       .angebot-listing{
         background-color: #f4f4f4; 
         padding: 20px; 
         border-radius: 10px; 
         margin-bottom: 40px;
       }

       .angebot-style{
         display:flex; 
         justify-content: center; 
         border-radius: 10px; 
         width: 100%; 
         height:100%;
       }

       .angebot-img{
         border-radius: 10px;
         width:45%;
         object-fit: contain;
       }
/*---------------------Angebote---------------------*/ 

/*---------------------Contact---------------------*/
.contact-form{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

textarea, input{
    font-size: 16px;
    border: 1px solid;
    border-radius: 8px;
    padding-left: 15px;
    width: 30%;
    outline: none;
    z-index: 1;
    margin-bottom:25px;
}

input{
    height: 50px;
    font-family: "Raleway";
}

textarea{
    height: 100px;
    font-family: "Raleway";
    padding-top:15px;
}

button{
    color: #0b2a7a;
    height: 58px;
    width: 200px;
    background-color: #fff;
    border-radius: 8px;
    font-size: 23px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    background-size: 298%;
}

button:hover {
    background-position: 100%;
    background-image: -webkit-linear-gradient(30deg, rgba(246, 249, 255, 1) 0%, rgba(11, 42, 122, 1) 64%, rgba(5, 29, 93, 1) 100%);
    background-image: linear-gradient(30deg, rgba(246, 249, 255, 1) 0%, rgba(11, 42, 122, 1) 64%, rgba(5, 29, 93, 1) 100%);
    color: white;
    border-color: #0B2A7A;
}
/*---------------------Contact---------------------*/

/*---------------------Footer---------------------*/
.footer-style{
    background-color: #0B2A7A; 
    color: white; 
    padding: 20px 0; 
    text-align: center; 
    border-radius: 10px;
}

.footer-social-media img:hover{
    transition: all .5s ease-in-out;
    transform: scale(1.1);
}

.footer-text-style{
    color: white; 
    text-decoration: none;
}

.footer-img{
    width: 40px; 
    height: 40px; 
    margin: 10px;
}

footer {
    background-color: #0B2A7A;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.social-media {
    margin-top: 10px;
}

.social-media img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}
/*---------------------Footer---------------------*/


/* INTERVALLE FÜRS HANDY */
@media (min-width:700px) and (max-width:900px) {

.links{
    flex-direction: column;
    display: flex;
    text-align:center;
}

nav a {
    margin-bottom: 10px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.erfolge{
    flex-direction: column;
    height: unset;
    width: 100%;
}

.flex-col-rev{
    flex-direction: column-reverse;
}

.erfolge-img-container{
  margin:20px;
  width: 100%;
}

.erfolge-listing{
  width: calc(100% - 2*20px);
}

.angebot-img{
    width: 100%;
}

textarea, input{
    width: 100%;
}

.contact-box{
    width: 100%;
}

}

@media (min-width:500px) and (max-width:699px) {

    .links{
        flex-direction: column;
        display: flex;
        text-align:center;
    }
    
    nav a {
        margin-bottom: 10px;
    }
    
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .erfolge{
        flex-direction: column;
        height: unset;
        width: 100%;
    }
    
    .flex-col-rev{
        flex-direction: column-reverse;
    }
    
    .erfolge-img-container{
      margin:20px;
      width: 100%;
    }
    
    .erfolge-listing{
      width: calc(100% - 2*20px);
    }
    
    .angebot-img{
        width: 100%;
    }
    
    textarea, input{
        width: 100%;
    }
    
    .contact-box{
        width: 100%;
    }
    
    li {
        display: flex;
        flex-direction: column;
    }
    }


@media (min-width:280px) and (max-width:499px) {

    .links{
        flex-direction: column;
        display: flex;
        text-align:center;
    }

    .logo{
        margin-bottom: 30px;
    }
    
    nav{
        flex-direction: column;  
    }

    nav a {
        margin-bottom: 10px;
    }
    
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .erfolge{
        flex-direction: column;
        height: unset;
        width: 100%;
    }
    
    .flex-col-rev{
        flex-direction: column-reverse;
    }
    
    .erfolge-img-container{
      margin:20px;
      width: 100%;
    }
    
    .erfolge-listing{
      width: calc(100% - 2*20px);
    }
    
    .angebot-img{
        width: 100%;
    }
    
    textarea, input{
        width: 100%;
    }
    
    .contact-box{
        width: 100%;
    }

    li {
        display: flex;
        flex-direction: column;
    }  
}