/* https://fonts.google.com/selection/embed */


* {
    box-sizing: border-box;
}

main {
    flex: 1;
}


body {
    font-family: Arial, sans-serif;
    color: white;
    background: black;
    margin: 0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* NAVBAR */

.navbar {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 80px 30px 80px;

    background: black;
}


@font-face {
    font-family: "Amsterdam Handwriting";
    src: url("../fonts/amsterdamHandwriting-Czech.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


.logo {
    font-family: "Amsterdam Handwriting", cursive;
    font-size: 50px;
    font-weight: normal;
    text-decoration: none;
    color: white;
}


.nav-links {
    display: flex;
    font-size: 20px;
    list-style: none;
    gap: 30px;

    font-family: "Turret Road", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.nav-links a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
    color: white;
}


.nav-links a:hover {
    transform: scale(1.10);
}


/* ALBA */

.albums {
    min-height: calc(100vh - 80px);

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 30px;

    padding-top: 20px;
}


.album-row {
    display: flex;

    justify-content: center;

    gap: 40px;
}


.album {
    width: 200px;
    height: 200px;

    border-radius: 50%;

    background: radial-gradient(
        circle farthest-side,
        white 0%,
        white 90%,
        black 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgb(0, 0, 0);

    text-decoration: none;

    transition: transform 0.3s ease, color 0.5s ease;

    font-family: "Turret Road", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}


.album:hover {
    transform: scale(1.4);
    color: white;
    /* background: gray; */
}


.contact-album {
    width: 200px;
    height: 200px;

    border-radius: 50%;

    background: radial-gradient(
        circle farthest-side,
        rgba(0, 255, 255, 0.679) 0%,
        rgba(0, 255, 255, 0.679) 90%,
        black 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgb(0, 0, 0);

    text-decoration: none;

    transition: transform 0.2s ease;

    font-size: 24px;
    text-align: center;

    font-family: "Turret Road", sans-serif;
    font-weight: 700;
    font-style: normal;
}


.contact-album::first-line {
    font-size: 30px;
}


.contact-album:hover {
    color: rgb(105, 252, 105);
    transform: scale(1.10);
}


/* SEKCE */

.section {
    font-family: "Turret Road", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}


.section p {
    font-size: 20px;
    font-weight: 300;
}


.section h1 {
    font-size: 50px;
    font-weight: bold;
    margin: 15px;
}


.section h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}


/* FORMULÁŘ */

form {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin: 40px auto;
}


form label {
    margin-bottom: 8px;
    text-align: left;
}


form input,
form select,
form textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 12px;
    font-size: 16px;

    background-color: #555;
    color: rgba(0, 255, 255, 0.679);
    border: 1px solid #222;
    border-radius: 5px;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form select:-webkit-autofill,
form textarea:-webkit-autofill {
    -webkit-text-fill-color: rgba(0, 255, 255, 0.679);
    -webkit-box-shadow: 0 0 0px 1000px #555 inset;
    transition: background-color 5000s ease-in-out 0s;
}


/* GDPR */

.gdpr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 25px;
}


.gdpr-checkbox input {
    width: 22px;
    height: 22px;
    margin: 2px 0 0 0;
    flex-shrink: 0;
    cursor: pointer;
}


.gdpr-checkbox label {
    margin: 0;
    line-height: 1.5;
    cursor: pointer;
}


/* TLAČÍTKO */

#submit-button {
    padding: 14px 30px;

    border: none;
    border-radius: 8px;

    color: white;

    font-size: 17px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s ease;

    background-color: #d88932;
}


#submit-button.complete {
    background-color: #3c9b5f;
}


#submit-button:hover {
    transform: scale(1.03);
}


/* VYPLNĚNO */

.vyplneno {
    color: green;
    font-size: 100px;
}

.section-vyplneno {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    text-align: center;

    padding-top: 150px;
}

.section-vyplneno a {
    text-decoration: none;
    padding-top: 40px;
    color: grey;
    font-size: 30px;
}

.section-vyplneno a:hover {
    color: aqua;
}

/* COPYRIGHT */

.copyright {
    text-align: right;
    padding: 10px 20px;
}