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

:root {
  --bg-url: url(./assets/blur-desktop.png);
  --background: #000;
  --text-color: #FFF;
  --button: #8257E5;
  --border-menu-mobile: #29292E;
  --text-color-menu-mobile: #E1E1E6;
  --surface-color: #8257e509;
  --surface-color-hover: #8257e51e;
  font-family: "Manrope", sans-serif;
}

body {
  background: var(--bg-url) no-repeat top center/cover;
  background-color: var(--background);
}

body button {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  transition: background-color 0.2s;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
  max-width: 940px;
}

.logo_desktop img {
  height: auto;
  align-self: center; 
}

.logo_mobile {
  display: none;
}

.menu_mobile {
  display: none;
}

.menu_close_button {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
}

#home nav ul li a {
  text-decoration: none;
  padding-left: 16px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}

li a:hover {
  color: var(--button) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.button_coffee {
  background-color: var(--surface-color);
  color: var(--text-color);
  border: solid var(--button) 2px;
  padding: 11px 38px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
  -webkit-background-filter: blur(4px);
}

.button_coffee:hover {
  transform: scale(1.3);
  background-color: var(--surface-color-hover);
}

.title {
  margin-top: 60px;
  text-align: center;
  font-size: 80px;
  font-weight: 700;
}

.title p {
  color: var(--button);
}

.title span {
  text-shadow: -1px -1px 0 var(--button), 1px -1px 0 var(--button), -1px 1px 0 var(--button), 1px 1px 0 var(--button);
}

.imag_coffee {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}

.imag_coffee img {
  max-width: 100%;
  height: auto;
}

.text_mobile {
  display: none;
}

.button_mobile {
  display: none;
}

/* footer */
footer {
  border-top: 1.5px solid var(--border-menu-mobile);
}
.description p {
  font-size: 8px;
  text-align: center;
  color: var(--text-color);
  padding: 14px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact a,i{
  color: var(--button);
  margin: 2px;
  text-decoration: none;
  justify-content: center;
  
}

.contact i:hover {
  border-radius: 50px;
  padding: 10px;
  backdrop-filter: blur(4px);
  -webkit-background-filter: blur(4px);
  background: var(--surface-color-hover);
}

footer h3 {
  font-size: 14px;
  color: var(--text-color);
  margin-top: 5px;
  text-align: center;
  margin-bottom: 16px;
}


/* media queries */
@media only screen and (max-width: 740px) {
  header {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-menu-mobile);
  }

  .logo_desktop {
    display: none;
  }

  .logo_mobile {
    display: flex;
  }

  .button_coffee {
    display: none;
  }

  .menu_mobile {
    background: inherit;
    border: none;
    display: block;
  }

  .menu_mobile i {
    font-size: 20px;
    margin-bottom: 8px;
    border: none;
    transition: 0.3s;
    color: var(--button);
  }

  .title {
    font-size: 60px;
  }

  .menu_mobile .menu {
    display: block;
  }

  .menu {
    display: none;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--background);
    z-index: 1;
  }

  .menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: none;
  }

  .menu_header .logo_mobile img {
    max-width: 100px;
  }

  .menu_close_button {
    background: inherit;
    border: none;
  }

  .menu_close_button i {
    font-size: 18px;
    margin-bottom: 8px;
    border: none;
    transition: 0.3s;
    color: var(--button);
  }

  .menu_close_button {
    display: block;
  }

  .menu_mobile i:hover {
    border-radius: 50px;
    padding: 10px;
    backdrop-filter: blur(4px);
    -webkit-background-filter: blur(4px);
    background: var(--surface-color-hover);
  }

  .menu_close_button i:hover {
    border-radius: 50px;
    padding: 10px;
    backdrop-filter: blur(4px);
    -webkit-background-filter: blur(4px);
    background: var(--surface-color-hover);
  }

  li a:hover {
    color: var(--text-color-menu-mobile) !important;
    opacity: 100% !important;
    border-left: 5px solid var(--button) !important;
  }

  nav {
    display: block;
    justify-content: space-between;
    align-items: center;
  }

  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
  }

  nav ul li {
    border-bottom: 1px solid var(--border-menu-mobile);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  nav ul li:first-child {
    border-top: 1px solid var(--border-menu-mobile);
  }

  .button_coffee {
    background-color: var(--surface-color);
    color: var(--text-color);
    border: solid var(--button) 2px;
    padding: 11px 38px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 5px;
    backdrop-filter: blur(4px);
    -webkit-background-filter: blur(4px);
  }

  .button_coffee:hover {
    transform: scale(1.3);
    background-color: var(--surface-color-hover);
  }

  .title {
    margin-top: 60px;
    text-align: center;
    font-size: 80px;
    font-weight: 700;
  }

  .title p {
    color: var(--button);
  }

  .title span {
    text-shadow: -1px -1px 0 var(--button), 1px -1px 0 var(--button), -1px 1px 0 var(--button), 1px 1px 0 var(--button);
  }

  .imag_coffee {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
  }

  .imag_coffee img {
    max-width: 100%;
    height: auto;
  }

  .text_mobile {
    display: none;
  }

  .button_mobile {
    display: none;
  }
}

@media only screen and (max-width: 430px) {
  body {
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, bottom center;
    background-attachment: fixed, fixed;
    width: 100vw;
    height: 90vh;
    justify-content: space-between;
  }
  
  .title {
    margin-top: 60px;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
  }
  
  .title p {
    color: var(--text-color);
  }
  
  .title span {
    text-shadow: -1px -1px 0 var(--button), 1px -1px 0 var(--button), -1px 1px 0 var(--button), 1px 1px 0 var(--button);
    font-size: 45px;  
  }

  .menu_header .logo_mobile img {
    max-width: 100px;
  } 

  .menu_mobile i.close {
    width: 18px;
    height: 18px;
  }

  .menu {
    width: 100%;
  }

  .text_mobile { 
    font-size: 16px;
    text-align: center;
    color: var(--text-color);
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
  }

  .button_mobile { 
    background-color: var(--surface-color);
    color: var(--text-color);
    border: solid var(--button) 2px;
    padding: 11px 38px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 5px;
    backdrop-filter: blur(4px);
    -webkit-background-filter: blur(4px);
    margin: 0 auto;
    display: block;
  }

  .button_mobile:hover {
    transform: scale(1.3);
    background-color: var(--surface-color-hover);
  }
}
