@font-face {
    font-family: Amsterdam Four;
    src: url(amsterdam_four_ttf_400.ttf) format('truetype');
}

* {
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    height: 100%;
    background-color: black;
    margin: 0;
}

header {
    background-color: #000;
    color: #fff;
    height: 50px;
    padding-top: 15px;
    padding-bottom: 0px;
    border-bottom: 2px solid #fff;
    width: 100%;
    top: 0;
}

header a {
    color: #fff;
    text-decoration: none;
    transition: color 0.5s; /* Added transition property */
    font-weight: bold;
    font-size: 1rem;
}

header a:hover {
    color: #C16510; /* Change color on hover */
}

#top {
    padding-bottom: 50px;
}

.header-distribution {
    display: flex;
    max-width: 980px;
    justify-content: space-around;
    margin: 0 auto; /* Add this line to center the header */
}

.black-background {
    background-color: #000;
    color: #fff;
}

.white-background {
    background-color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
    margin: 0px auto;
}

.section-decorating {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer {
    padding-bottom: 10px;
    text-align: center;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
}

.split-section-reversewrap {
    display: flex;
    flex-wrap: wrap-reverse;
}

.text-section {
    flex: 1;
    text-align: center;
}

.photo-section {
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-left-section {
    flex: 1;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.footer-right-section {
    flex: 1;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.unique-font {
    font-family: Amsterdam Four, sans-serif;
    font-size: 145px;
    padding-left: 55px;
}

.text-centering {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 5px;
}

.text-centering-2 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    line-height: 2;
}

.footer-font-height {
    font-size: 28px;
    margin: 0px;
}

.custom-button {
    display: block;
    padding: 10px 10px;
    margin-top: 20px;
    margin-bottom: 50px;
    border: 2px solid #fff;
    background-color: #000;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    width: 50%;
}

.custom-button:hover {
    background-color: #fff;
    color: #000;
}

.img-border {
    margin: 10px 0px;
    padding: 2px;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(255, 255, 255, 1.0);
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.img-border-2 {
    padding: 2px;
    margin: 0px 20px 20px 20px;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(255, 255, 255, 1.0);
    object-fit: cover;
}

h1 {
    font-size: 90px;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    font-size: 35px;
    margin-bottom: 0px;
}

h3 {
    font-size: 30px;
    margin-bottom: 0px;
}

iframe {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

.text-manicure-1 {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 20px;
    margin: 0px;
}

.text-manicure-2 {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 20px;
    margin: 0px;
}

.text-manicure-3 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    margin: 0px 0px 50px 0px;
}

.text-manicure-4 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 10px;
    margin: 0px 0px 0px 0px;
}

.odkaz {
    font-size: 30px;
    margin-top: 0px;
    text-decoration: none;
    color: black;
}

.odkaz:hover {
    font-size: 30px;
    margin-top: 0px;
    text-decoration: none;
    color: #C16510;
}

@media (max-width:800px) {
    .custom-button {
        font-size: 4vw;
    }
    
    .unique-font {
        font-size: 15vw;
    }

    header a {
        font-size: 2.1vw;
    }

    .footer-left-section {
        flex: 100%;
        width: 100%;
    }
    
    .footer-right-section {
        flex: 100%;
        width: 100%;
    }

    .text-section {
        flex: 100%;
        width: 100%;
    }
    
    .photo-section {
        flex: 100%;
        width: 100%;
    }

    .text-manicure-1 {
        text-align: center;
    }
    
    .text-manicure-2 {
        text-align: center;
    }
    
    .text-manicure-3 {
        text-align: center;
    }
    
    .text-manicure-4 {
        text-align: center;
    }

    h1 {
        font-size: 8vw;
    }
}