@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Hey October";
    src: url("../font/heyoctober-8m8oz-webfont.woff") format("woff");
}

:root {
    --primary-color: #1f1f1f;
    --secondary-color: #d5a6a8;
    --tertiary-color: rgb(244, 237, 237);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url(../img/custom-cursor.png), auto;
}

h1,
h2 {
    font-weight: normal;
}

body {
    background-color: var(--tertiary-color);
}

/* Header */

.center {
    text-align: center;
}

.nav-wrapper {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    width: 90%;
    height: 80px;
    border-radius: 0 0 15px 15px;
    padding: 0 25px;
    z-index: 2;
    background: rgb(244, 237, 237);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.logo {
    height: 60px;
}

.nav-tabs {
    font-family: "Montserrat";
    display: flex;
    font-weight: 400;
    font-size: 14px;
    list-style: none;
}

.nav-tab:not(:last-child) {
    padding: 10px 25px;
    margin: 0;
    /* border-right: 1px solid #eee; */
}

.nav-tab:last-child {
    padding: 10px 0 0 25px;
}

.nav-tab,
.menu-btn {
    cursor: pointer;
}

.nav-tabs a {
    text-decoration: none;
    color: #111;
}

.nav-tab:hover {
    color: #d5a6a8;
    /* transition: all 5s ease; */
}

.hidden {
    display: none;
}

@media screen and (max-width: 800px) {
    .nav-container {
        position: fixed;
        display: none;
        overflow-y: auto;
        z-index: -1;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: rgb(244, 237, 237);
        box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
    }

    .nav-tabs {
        flex-direction: column;
        align-items: flex-end;
        margin-top: 80px;
        width: 100%;
    }

    .nav-tab:not(:last-child) {
        padding: 20px 25px;
        margin: 0;
        border-right: unset;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-tab:last-child {
        padding: 15px 25px;
    }

    .menu-btn {
        position: relative;
        display: block;
        margin: 0;
        width: 20px;
        height: 15px;
        cursor: pointer;
        z-index: 2;
        /* padding: 10px; */
        border-radius: 10px;
    }

    .menu-btn .menu {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #111;
    }

    .menu-btn .menu:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }

    .menu-btn .menu:nth-child(3) {
        margin-top: 4px;
    }

    #menuToggle:checked+.menu-btn .menu {
        transition: transform 0.2s ease;
    }

    #menuToggle:checked+.menu-btn .menu:nth-child(1) {
        transform: translate3d(0, 6px, 0) rotate(45deg);
    }

    #menuToggle:checked+.menu-btn .menu:nth-child(2) {
        transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
        opacity: 0;
    }

    #menuToggle:checked+.menu-btn .menu:nth-child(3) {
        transform: translate3d(0, -6px, 0) rotate(-45deg);
    }

    #menuToggle:checked~.nav-container {
        z-index: 1;
        display: flex;
        animation: menu-slide-left 0.3s ease;
    }

    @keyframes menu-slide-left {
        0% {
            transform: translateX(200px);
        }

        to {
            transform: translateX(0);
        }
    }
}

/* Contact section */

.contact-title {
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

h1 {
    font-family: "Hey October";
    font-size: 4rem;
    color: var(--primary-color);
}

.contact-me {
    /* height: 100vh; */
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
}

.contact-img {
    width: 70%;
    height: 600px;
    /* position: relative; */
    background-image: url('../img/contact-img2.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* .contact-img img {
    width: 40%;
} */

.contact-text {
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 3% 0 3% 0;
}

.contact-text p {
    font-weight: 600;
    max-width: 1000px;
}

/* Book app section */

.book-app {
    /* background-color: var(--secondary-color); */
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
    align-items: center;
    position: relative;
}

.book-app-title {
    /* padding-bottom: 3rem; */
    text-align: center;
}

.book-app-title h2 {
    font-family: "Montserrat";
    font-size: 1.5em;
}

.book-app-text p {
    /* text-align: center; */
    /* max-width: 600px; */
    font-family: "Montserrat";
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5rem;
    padding-top: 0.6em;
    /* padding-left: 5vw; */
    /* max-width: 80rem; */
}

.social-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 0.5em; */
    justify-items: center;
    align-items: center;
    position: relative;
    padding-bottom: 4rem;
    /* background-color: var(--secondary-color); */
    /* margin-top: 3rem; */
    /* padding-right: 8rem; */
}

.social-icons a:first-child {
    justify-self: right;
}

.social-icons a:last-child {
    justify-self: left;
}

/* .social-icons .facebook-icon .svg {
    justify-content: right;
} */

.social-icons:hover {
    cursor: pointer;
}

.facebook-icon {
    width: 11em;
    height: 11em;
    background-image: url('../img/brush-stroke.png');
    background-position: center;
    background-position: bottom;
    background-repeat: no-repeat;
    align-items: center;
    justify-items: center;
    position: relative;
}

.fb-icon {
    fill: var(--tertiary-color);
    height: 10em;
    position: absolute;
    left: 0.2em;
    top: 1.4em;
}

.fb-icon:hover {
    fill: var(--secondary-color);
    transition: color 0.7s ease;
}

.instagram-icon {
    width: 11em;
    height: 11em;
    background-image: url('../img/brush-stroke.png');
    background-position: center;
    background-position: bottom;
    background-repeat: no-repeat;
    align-items: center;
    justify-items: center;
    position: relative;
}

.insta-icon {
    fill: var(--tertiary-color);
    height: 9em;
    position: absolute;
    left: 0.9em;
    top: 1.4em;
}

.insta-icon:hover {
    fill: var(--secondary-color);
    transition: color 0.7s ease;
}

/* Footer */

footer {
    font-family: "Montserrat";
    text-align: center;
    color: var(--tertiary-color);
    background-color: var(--primary-color);
    padding: 1rem 0;
}

@media screen and (min-width: 500px) {
    /* Contact section */

    .contact-title {
        display: grid;
        justify-items: center;
        align-items: center;
        text-align: center;
        position: relative;
        margin-top: 3rem;
    }

    h1 {
        font-family: "Hey October";
        font-size: 4rem;
        color: var(--primary-color);
    }

    .contact-me {
        /* height: 100vh; */
        display: grid;
        justify-items: center;
        align-items: center;
        text-align: center;
    }

    .contact-img {
        width: 70%;
        height: 600px;
        /* position: relative; */
        background-image: url('../img/contact-img2.jpg');
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
    }

    /* .contact-img img {
        width: 40%;
    } */

    .contact-text {
        display: grid;
        justify-items: center;
        align-items: center;
        text-align: center;
        position: relative;
        margin: 3% 0 3% 0;
    }

    .contact-text p {
        font-weight: 600;
        max-width: 1000px;
    }

    /* Book app section */

    .book-app {
        /* background-color: var(--secondary-color); */
        padding: 3rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        justify-items: center;
        align-items: center;
        position: relative;
    }

    .book-app-title {
        /* padding-bottom: 3rem; */
        text-align: center;
    }

    .book-app-title h2 {
        font-family: "Montserrat";
        font-size: 1.5em;
    }

    .book-app-text p {
        /* text-align: center; */
        /* max-width: 600px; */
        font-family: "Montserrat";
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.5rem;
        padding-top: 0.6em;
        /* padding-left: 5vw; */
        /* max-width: 80rem; */
    }

    .social-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* gap: 0.5em; */
        justify-items: center;
        align-items: center;
        position: relative;
        padding-bottom: 4rem;
        /* background-color: var(--secondary-color); */
        /* margin-top: 3rem; */
        /* padding-right: 8rem; */
    }

    .social-icons a:first-child {
        justify-self: right;
    }

    .social-icons a:last-child {
        justify-self: left;
    }

    /* .social-icons .facebook-icon .svg {
        justify-content: right;
    } */

    .social-icons:hover {
        cursor: pointer;
    }

    .facebook-icon {
        width: 15em;
        height: 15em;
        background-image: url('../img/brush-stroke.png');
        background-position: center;
        background-position: bottom;
        background-repeat: no-repeat;
        align-items: center;
        justify-items: center;
        position: relative;
    }

    .fb-icon {
        fill: var(--tertiary-color);
        height: 10em;
        position: absolute;
        left: 2em;
        top: 5em;
    }

    .fb-icon:hover {
        fill: var(--secondary-color);
        transition: color 0.7s ease;
    }

    .instagram-icon {
        width: 15em;
        height: 15em;
        background-image: url('../img/brush-stroke.png');
        background-position: center;
        background-position: bottom;
        background-repeat: no-repeat;
        align-items: center;
        justify-items: center;
        position: relative;
    }

    .insta-icon {
        fill: var(--tertiary-color);
        height: 9em;
        position: absolute;
        left: 2.5em;
        top: 5.5em;
    }

    .insta-icon:hover {
        fill: var(--secondary-color);
        transition: color 0.7s ease;
    }

    /* Footer */

    footer {
        font-family: "Montserrat";
        text-align: center;
        color: var(--tertiary-color);
        background-color: var(--primary-color);
        padding: 1rem 0;
    }
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 6rem;
    }

    .book-app {
        /* background-color: var(--secondary-color); */
        padding: 3rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        justify-items: center;
        align-items: center;
        position: relative;
    }

    .book-app-title {
        /* padding-bottom: 3rem; */
        text-align: center;
    }

    .book-app-text p {
        /* text-align: center; */
        /* max-width: 600px; */
        font-family: "Montserrat";
        font-size: 1rem;
        text-align: center;
        line-height: 1.5rem;
        padding-top: 0.6em;
        /* padding-left: 5vw; */
        /* max-width: 80rem; */
    }

    .book-app-title h2 {
        font-family: "Montserrat";
        font-size: 2em;
    }
}

@media screen and (min-width: 1200px) {
    h1 {
        font-size: 6rem;
    }

    .book-app {
        /* background-color: var(--secondary-color); */
        padding: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10;
        justify-items: center;
        align-items: center;
        position: relative;
    }

    .book-app-title {
        /* padding-bottom: 3rem; */
        text-align: left;
    }

    .book-app-text p {
        /* text-align: center; */
        font-family: "Montserrat";
        font-size: 1rem;
        max-width: 500px;
        text-align: left;
        line-height: 1.5rem;
        padding-top: 0.6em;
        /* padding-left: 5vw; */
        /* max-width: 80rem; */
    }

    .book-app-title h2 {
        font-family: "Montserrat";
        font-size: 3em;
        max-width: 500px;
    }
}