@font-face { font-family: Roboto; src: url('../font/Roboto-Regular.ttf'); } 
@font-face { font-family: Roboto; font-weight: bold; src: url('/font/Roboto-Bold.ttf'); }
@font-face { font-family: Roboto; font-weight: italic; src: url('/font/Roboto-Italic.ttf'); }

/*css reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: Roboto;
}

div, section, span, ul, li, a, header{
    box-sizing: border-box;
}

/* Menu header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5em;
    align-items: center;
    position: fixed;
    z-index: 999;
}

#menu li {
    list-style: none;
    display: inline-block;
    margin: 0.5em;
    color:#313131;
}

#menu li a {
    color: #313131;
    text-decoration: none;
    font-size: 20px;
}

.home-link {
    font-family: "Roboto";
    font-size: 1.2rem;
    color:#575757;
}

.mobile-menu {
    display: none;
}

.home-link:hover, a.phone:hover {
    text-decoration: underline;
    text-decoration-color: rgb(249, 188, 255);
}

.home-text-title {
    font-size: 2.1rem;
    width: 75%;
}

.phone-container, .phone-icon, .phone-link {
    display: flex;
    align-items: center;
    justify-content: left;
}

.phone-container {
    margin-top: 2vh;
    color: inherit;
}

a.phone {
    text-decoration: none;
    color: #000000b2;
}


.circle {
    display: flex;
    width: 30rem;
    height: 30rem;
    background-color: #f3b4c7;
    /* background-image: url("./images/gg_photo2.png"); */
    background-image: url("./images/cover_home3.png");
    /* background-size: cover; */
    background-size: 100%;
    background-repeat: no-repeat;
    /* background-position: 10px -29px !important; */
    border-radius: 50%;
    /* margin-left: -13em; */
}

.home-text {
    width: 750px;
    height: 400px;
    background-color: white;
    /* margin-right: -9em; */
    border-radius: 10px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-text-container {
    display: flex;
    flex-direction: column;
}


.about-main-container {
    width: 60%;
    /* height: 80%; */
    background-color: white;
    /* margin-top: 7em; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.about-left-column {
    /* float: left; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    width: 50%;
}

.about-right-column {
    width: 50%;
    /* float: left; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}


@media (min-width:1px) and (max-width:319px) {
    ul.menu-elements {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }
    
    .home-text-title {
        font-size: 1.2rem;
        width: 100%;
    }

    .home-text-container {
        text-align: center;
    }

    .phone-container {
        justify-content: center;
    }

    .circle-home {
        flex-direction: column-reverse;
    }

    .circle {
        margin-left: 0;
        margin-bottom: -14em;
        z-index: 1;
        scale: 0.7;
    }

    .home-text {
        align-items: end;
        width: 100%;
    }

    .about-main-container {
        flex-direction: column;
    }

    .about-left-column, .about-right-column {
        width: 100%;
    }
    
}

@media (min-width:320px) and (max-width:599px) {
    ul.menu-elements {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .home-text-title {
        font-size: 1.5rem;
        width: 100%;
    }

    .home-text-container {
        text-align: center;
    }

    .phone-container {
        justify-content: center;
    }

    .circle-home {
        flex-direction: column-reverse;
    }

    .circle {
        margin-left: 0;
        margin-bottom: -14em;
        z-index: 1;
        scale: 0.7;
    }

    .home-text {
        align-items: end;
        width: 100%;
    }

    .about-main-container {
        flex-direction: column;
        width: 90%;
    }

    .about-left-column, .about-right-column {
        width: 100%;
    }
}

@media (min-width:600px) and (max-width:800px) {
    ul.menu-elements {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .home-text-title {
        font-size: 1.8rem;
        width: 100%;
    }

    .home-text-container {
        text-align: center;
    }

    .phone-container {
        justify-content: center;
    }

    .circle-home {
        flex-direction: column-reverse;
    }

    .circle {
        margin-left: 0;
        margin-bottom: -14em;
        z-index: 1;
        scale: 0.7;
    }

    .home-text {
        align-items: end;
        width: 100%;
    }

    .about-main-container {
        flex-direction: column;
        width: 90%;
    }

    .about-left-column, .about-right-column {
        width: 100%;
    }

}

@media (min-width:801px) {
    .home-link {
        font-size: 1.2rem;
        /* color: white; */
    }

    .home-text-title {
        font-size: 1.9rem;
    }

    .circle {
        margin-left: -10em;
        width: 22rem;
        height: 22rem;
    }

    .about-main-container {
        flex-direction: column;
        width: 90%;
    }

    .about-left-column, .about-right-column {
        width: 100%;
    }

    .topnav {
        visibility: hidden;
    }
}

@media (min-width:1025px) {
    .home-link {
        font-size: 1.2rem;
        /* color: rgb(76, 0, 255); */
    }

    .about-main-container {
        flex-direction: row;
        max-width: 80em;
    }

    .circle {
        width: 30rem;
        height: 30rem;
    }
}

@media (min-width:1281px) {
    .home-link {
        font-size: 1.2rem;
        /* color: rgb(99, 170, 123); */
    }

    .about-main-container {
        flex-direction: row;
        max-width: 80em;
    }

    .topnav {
        visibility: hidden;
    }

    .circle {
        width: 30rem;
        height: 30rem;
    }
}

section {
    width: 100%;
    float: left;
    /* height: 100vh; */
    position: relative;
}

/* Sections colors */
.home-01 {
    display: flex;
    flex-basis: auto;
    align-items: center;
    justify-content: center;
    background-color: #EA98A0;
    /* height: 80vh; */
}

#about{
     background-color: #ED6663;
}

#product{
     background-color: #B52B65;
}

#pricing{
     background-color: #3C2C3E;
}

#contact{
     background-color: #ffffff;
}

/* Home */
.header-background {
    background-color: #FEE7F7;
    padding-top: 5px;
    padding-bottom: 5px;
}

.circle-home {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding-top: 8em;
    margin-bottom: 1em;
    width:100%;
}

.menu-elements {
    width: 100%;
    display: flex;
    justify-content: right;
}

#contact-main {
    /* padding-top: 10vh; */
}

#contact-map {
    margin: 0 auto;
    width: 100%;
    height: 50vh;
    max-width: 50em;
    background-color: #f7f7f7;
    text-align: center;
    padding-top:3vh;
    padding-bottom:3vh;
    border-radius: 20px;
}

.google-map {
    width: 80%; 
    height: 100%;
    border:0;
}

#contact-social {
    margin: 0 auto;
    width: 90%;
    max-width: 40rem;
    /* height: 35vh; */
    background-color: #fccbcb;
    /* border-radius: 25px; */
    text-align: center;
    padding-top:3vh;
    padding-bottom:3vh;
    margin-top: 75px;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    color:#000000b2;
}

p.title {
    font-size: 1.5rem;
    color:#000000b2;
}

p.address {
    font-size: 1rem;
    margin-top: 1vh;
    color:#000000b2;
}

p.phone {
    margin-top: 1rem;
    font-size: 2vh;
    color:#000000b2;
}

#contact-social-icons {
    margin-top: 2vh;
}

.fa {
    padding: 0px;
    text-align: center;
    text-decoration: none;
}

.social-icon-img-fb {
    height: 35px;
    width: 35px;
    margin-bottom: 5px;
}

.social-icon-img-ig {
    height: 42px;
    width: 42px;
}

.social-icon-img-booksy {
    height: 42px;
    width: 69px;
    background-color: #1ad2db;
    border-radius: 15px;
    color: white;
}

p.where-to-find {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2vh;
}

.opening-hours-title {
    color:#000000b2;
    text-transform: uppercase;
    margin-top: 1vh;
}

.opening-hours {
    color:#000000b2;
    margin-top: .3vh;
}

.hr-line {
    margin-top: 1vh;
}

hr {
    width:50%;
    margin: 0 auto;
    height: 1px;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0, 0, 0, 0)), color-stop(0.5, #333333), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    background: linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    border: 0;
}

#home-content-container {
    width: 100px;
    height: 100px;
    background-color: red;
}

.home-cover-img {
    height: 30%;
    width: 30%;
}

/* .circle img {
    object-fit: cover;
    width: 50px;
    height: 100px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

.home-text-title, .home-text-content {
    margin-bottom: 1em;
    /* padding-left: 50px; */
    font-family: 'Roboto';
    color:#000000b2;
}

.home-text-content {
    font-size: 2vh;
}

.phone-icon {
    width: 5%;
}

.phone-link {
    margin-left: 1vh;
}

.home-booksy {
    border-radius: 5px;
}

.booksy-icon {
    width: 5%;
}

/* About */

#about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: auto;
    padding-top: 2em;
    padding-bottom: 2em;
}

.about-content {
    border-color: #ffd6e7;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    padding: 30px;
    width: 40%;
    /* height: 150px; */
    margin: 20px;
    display: flex;
    gap: 10px;
    color:#333333;
    font-family: "Roboto";
    width: 80%;
}

.about-content-pic {
    width: 75px;
}

.about-content-title {
    font-weight: bold;
    font-size: 22px;
    margin-left: 10px;
}

.about-content-text {
    display: flex;
    align-items: center;
}

.p-about-content-text {
    margin-top: 10px;
    margin-left: 10px;
    line-height: 1.5;
}

.about-content:hover {
    background-color:rgba(255, 192, 203, .3);
    transition: 1s;
}

#portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3C2C3E;
    padding-bottom: 1em;
}

.portfolio-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 70%;
    /* height: 80%; */
    margin-top: 1rem;
    /* padding-left: 50px; */
    /* background-color: white; */
}

.portfolio-image {
    padding: 5px;
    background-color: #fffafa;
    border-radius: 5px;
}

#mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9000;
    background-color: #000;
    display: none;
  }
   
  #boxes .window {
    position: absolute;
    left: 0;
    top: 0;
    width: 440px;
    height: 700px;
    display: none;
    z-index: 9999;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display:none;
  }
   
  #boxes #dialog {
    width: 750px;
    height: 700px;
    background-color: #ffffff;
    font-family: 'Segoe UI Light', sans-serif;
    font-size: 15pt;
    
  }
   
  #popupfoot {
    font-size: 16pt;
    position: absolute;
    width: 250px;
    
  }

  img.example-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
  }

  .nav-bar-icon {
    scale: 0.5;
  }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ED6663;
  overflow-x: hidden;
  padding-top: 4rem;
  transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  font-family: "Roboto";
}

.sidenav a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #ffffff;
  display: block;
  transition: 0.4s;
  white-space: nowrap;
  font-size: 1.3rem;
}

.sidenav a:hover {
  color: white;
  background: #ffa9a9;
}
/* Position and style the close button (top right corner) */
.sidenav .close-btn {
  position: absolute;
  top: -1rem;
  right: 0rem;
  font-size: 3rem;
}

.sidenav .close-btn:hover {
  background: initial;
  transform: scale(1.0);
}

.cat-icon {
    transform: scale(0.75);
}






