/* základní nastavení */
body {
    margin: 0;
  }
  html {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  *, ::after, ::before {
    box-sizing: inherit;
  }

/* stylování loga */
.logo-image {
    width: 130px;
    height: 130px;
    position: absolute;
    left: calc(50% - 67px);
    top: 16px;
    margin-bottom: 0px;
    margin-top: 20px;
     @media screen and (max-width: 817px) {
        width: 100px;
        height: 100px;
        left: calc(50% - 52px);
        
    }
}

/* stylování horního menu */
.menu-list {
    margin-top: 200px;
    list-style: none;
    display: flex;
    justify-content: center;
        @media screen and (max-width: 817px) {
        display: none;
        
    }
}
.menu-item {
    margin: 20px;
    font-family: "Playfair Display";
    font-size: 15px;
        @media screen and (min-width: 845px) {
        font-size: 16px;
    }
        @media screen and (min-width: 1000px) {
        font-size: 18px;
    }
}

.menu-hypertext {
    text-decoration: none;
    color: black;
}

/*stylování dresscode textu*/
.dresscode-text {
  font-family: "Playfair Display";
  padding: 5%;
    @media screen and (min-width: 1500px) {
     font-size: 25px;
    }
 }

.footer-text {
    font-family: "Playfair Display";
    font-size: 14px;
    @media screen and (min-width: 900px) {
        font-size: 16px;
    }
        @media screen and (min-width: 1500px) {
        font-size: 18px;
    }
}

 .footer {
    margin-top: 100px;
    text-align: center;
}


.wallpaper {
  margin-top: 18px;
  background-color: #df9e94;
  color: white;
  height: 250px;
  font-family: "Playfair Display";
  font-size: 60px;
  padding-top: 35px;
  padding-left: 5%;
      @media screen and (max-width: 900px) {
     font-size: 50px;
    }
}

.dresscode-text-nadpis {
  font-size: 30px;
  color: #e55674;
  font-weight: 400;
}


.menu-hypertext:hover {
    border-bottom: black solid 1px;
}

/* hamburger menu */
.menu__checkbox {
    position: absolute;
    left: -9999px;
}
.menu__checkbox:checked ~ .menu-list-hamburger {
    display: block;
}
.menu-list-hamburger {
    display: none;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.menu__toggler {
    cursor: pointer;
    font-family: "Playfair Display";
    font-size: 20px;
    padding-left: 15px;
    margin-bottom: 10px;
}

.hamburger-menu {
    margin-top: 200px;
    @media screen and (min-width: 817px) {
       display: none;

    }
}

.menu-item-hamburger {
    border-bottom: 1px solid black;
}
.menu-hypertext-hamburger {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: black;
    font-family: "Playfair Display";
}
.menu-hypertext-hamburger:hover {
    background-color: #f3f1f0;
}

.palette {
    max-height: 700px;
    max-width: 100%;
    object-fit: cover;
}

.pinterest {
    color: #e55674;
}