* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e1dedc;
    font-family: sans-serif;
    font-weight: 300;
    color: #2b0e02;
}


/* Znovupoužitelné */
.row {
    width: 80%;
    margin: 0 auto;
}

h2 {
    text-align: center;
    padding-top: 60px;
    font-size: 30px;
}

h2:after {
    content: "";
    display: block;
    width: 150px;
    height: 2px;
    margin: 15px auto;
    background: linear-gradient(90deg, #ff7f50, #bb3d06);
    margin-bottom: 10px;
}

/* Header */
header {
    background: linear-gradient(#00000089, #83726bb3), url("../img/illustration.jpg");
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nav-bar-wrapper  {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 80px;
    background-color: #000000C6;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

#logo {
    padding-top: 20px;
    cursor: pointer;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
}

nav ul li {
    margin-top: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 23px;
    color: #f4e8e3;
    border-bottom: 2px solid transparent;
    transition: border-color 0.5s;
}

nav ul li a:hover,
nav ul li a:active {
    border-bottom: 2px solid #dc4403;
}

.nav-bar-contact {
  color: #dc4403;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
    padding: 100px 20px 50px 0px;
}

.header-text h1 {
    font-family: "Acme", sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    color: #f4e8e3;
    letter-spacing: 1.8px;
    word-spacing: 6px;
}

.header-text p {
    font-size: 22px;
    line-height: 35px;
    color: #c7b0a5;
    letter-spacing: 1px;
    word-spacing: 1.8px;
    margin-top: 30px;
}

.inline {
    display: flex;
}

.btn:link,
.btn:visited {
    display: inline-block;
    width: 180px;
    margin-top: 40px;
    padding: 6px 12px;
    border: 2px solid #bb3d06;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    color: #f4e8e3;
    letter-spacing: 1px;
    transition-duration: 0.5s;
}

.btn:hover,
.btn:active {
    background-color: #dc4403;
    border: 2px solid #dc4403;
}

.btn-full {
    background-color: #bb3d06;
}

.btn-empty {
    margin-left: 10px;
}

.email .email-address:link,
.email .email-address:visited {
    width: 200px;
    height: auto;
    line-height: 23px;
    text-decoration: none;
    color: #f4e8e3;
    margin-top: 12px;
    margin-left: 15px;
    font-size: 20px;
    transition-duration: 0.5s;
}

.email .email-address:hover,
.email .email-address:active {
    font-size: 22px;
}

.email {
    display: flex;
    justify-content: start;
    margin: 20px 0;
    margin-top: 30px;
}

/* Mobilní navigace */
.mobile-menu-toggle {
  display: none;
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* O mně */
.about-me-cards {
    margin-top: 50px;
}

.about-me-cards p {
    display: grid;
    place-items: center;
    padding: 10px 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.card {
    width: 100%;
    max-width: 650px;
    height: 100%;
    min-height: 250px;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #ccc8c6;
    box-shadow: 7px 7px 7px #583939B3;
}

.right {
  justify-self: end;
  transform: translateX(-20px); /* lehce doleva od konce sloupce */
}

.left {
  justify-self: start;
  transform: translateX(20px);  /* lehce doprava od začátku sloupce */
}

/* Projekty */
.info {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 650px;
    height: 100%;
    margin-bottom: 10px;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #ccc8c6;
    box-shadow: 7px 7px 7px #583939B3;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.projects img {
    height: 60px;
}

.btn-github {
    margin-top: -50px;
}

/* Kontakt */
.where-to-find-me {
    margin-top: -50px;
    margin-bottom: 100px;
}

.where-to-find-me .down {
    margin-top: 150px;
}

.btn-where-to-find-me:link,
.btn-where-to-find-me:visited {
    width: auto;
    max-width: 650px;
    min-width: 250px;
    height: 55px;
    line-height: 40px;
}

.btn-where-to-find-me:hover,
.btn-where-to-find-me:active {
    font-size: 22px;
}

/* Footer */
footer {
    line-height: 60px;
    background-color: #f3c8b8;
    text-align: center;
    font-size: 15px;
    color: #2b0e0285;
}