/***** Celý dokument *****/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/***** Body *****/
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/***** Část Body - main heading *****/
.about-me {
    width: 100%;
    min-height: 90vh;
    margin: auto;
    background: linear-gradient(rgb(5, 5, 5, 0.85),rgb(20, 20, 20, 0.8)),
                url(../../img/layout/layout_main_background_4.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-me-section {
    height: 400px;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    gap: 50px;
}

.about-me-general {
    flex-direction: row;
    margin-top: 50px;
}

.about-me-construction {
    flex-direction: row-reverse;
}

.about-me-consulting {
    flex-direction: row;
}

.about-me-interesting {
    flex-direction: row-reverse;
}

.about-me-cooperation {
    flex-direction: row;
}

.about-me-section img {
    max-height: 80%;
    box-shadow: 15px 15px 15px black;
    transform: scale(1.0);
    transition: all 1s ease-out;
}

.about-me-section img:hover {
    transform: scale(1.05);
}

.about-me-description {
    color: white;
}

.about-me-description h1 {
    letter-spacing: 2.5px;
    text-decoration: underline;
    margin-bottom: 15px;
}

.about-me-description p {
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 150%;
    text-align: left; 
}

/* Email */
.about-me-description p a:link,
.about-me-description p a:visited {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: all 0.5s ease-out;
}

.about-me-description p a:hover,
.about-me-description p a:active {
    color: rgb(255, 230, 0);
}

/* Seznam */
.about-me-section ul {
    list-style-type: none; /* odstraníme tečky ze seznamu */
    padding: 0;
    margin: 0;
}

.about-me-section ul li {
    padding: 5px; /* přidáme padding pro položky seznamu */
    border-left: 2px solid rgb(255, 230, 0); /* přidáme levý okraj pro identifikaci úrovní */
    margin-left: 10px; /* odsadíme položky od levého okraje */
    margin-bottom: 2px; /* přidáme malý odstup mezi položkami */
}

/* Sociální sítě */
.about-me-social-network a {
    color: transparent;
    cursor: auto;
}

.about-me-social-network a img {
    background: linear-gradient(270deg, rgb(50, 50, 50), rgb(60, 60, 60));
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(5, 5, 5);
    width: 40px;
    height: 40px;
    margin: 20px 20px;
    padding: 5px;
    transition: all 0.5s ease-out;
}

.about-me-social-network a img:hover {
    background: linear-gradient(270deg, rgb(5, 5, 5), rgb(10, 10, 10));
    box-shadow: 0 0 5px rgb(255, 230, 0);
    cursor: pointer;
}



