html, body {
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: "Open Sans", Arial, sans-serif;
    background-color: #FBF9F2;
    color: #9E6F51;
    margin: 0;
}

:root {
    --index: calc(1vh + 1vw);
}

/* Header */
header {
    position: fixed;
    z-index: 10;
    background-color: #E9E7E3;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
    padding: 3px 6px;
}
.header-flex {
    display: flex;
    width: 99vw;
    justify-content: space-between;
    align-items: center;
}
.anchor {
    display: block;
    height: 80px;
    margin-top: -80px;
    visibility: hidden;
}

.socialMediaIcon {
    padding: 5px;
    width: 25px;
    height: 25px;
}
.social-icons {
    padding-right: calc(var(--index) * 0.5);
}
header .logo_container {
    display: flex;
    align-items: center;
    padding: 0 5px;
}

header .logo {
    padding-top: 5px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* background-color: white; */
}
header h1 {
    display: flex;
    align-items: center;
    margin: 0;
}
header .logoName {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 200;
    color: #9E6F51;
    padding-left: 20px;
}
a {
    text-decoration: none;
}
nav {
    display: flex;
    padding-right: 5%;
}
.toggleCheckbox {
    display: none;
}
header nav a {
    margin: 0 1rem;
    color: #9E6F51;
    text-decoration: none;
    border-bottom: #E9E7E3 solid;
    padding: 5px;
}

nav a:hover {
    transition: 0.3s;
    border-bottom: #9E6F51 solid;
}


/* Burger menu */
ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    align-items: center;
}
#burger-toggle {
    display: none;
}
.burger-menu__container {
    display: none;
}


.a-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hidden-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 34px;
    background-color: #E9E7E3;
    display: none;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 0px;
    padding-bottom: 5px;
}

.a-flex:hover .hidden-menu {
    display: flex;
}

.hidden-menu:hover {
    display: flex;
}

.hidden-menu-link {
    padding: 5px;
}

/* .hidden-menu-link:hover {
    background-color: #ceccc8;
} */

.socialMediaIcon:hover .path {
    transition: 0.3s;
    fill: #7B635C;
}

/* About Section */

p, h3 {
    color: #5F5F5E;
}

h3 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 200;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 0;
}
.about-content-padding {
    padding: 100px 0;
}
.about-content-text {
    font-size: 19px;
    border: #9E6F51 solid 1px;
    border-radius: 5px;
    color: #9E6F51;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
    padding: 30px;
    width: 700px;
}

.photo-placeholder {
    background-color: #C3D8E2;
    width: 600px;
    height: 480px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
    border-radius: 5px;
}

/* Gallery */

h2 {
    text-align: center;
    margin: 0;
    padding: 15px 50px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #7B635C;
    border-radius: 0 20px 20px 0;
    display: inline-block;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
}

.first-h2 {
    border-top-right-radius: 0;
    margin-top: 80px;
}

.flex {
    margin: 0 auto;
    align-items: center;
    display: flex;
    max-width: 1500px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 80px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 20px;
}

.photo1, .photo2, .photo3, .photo4 {
    display: none;
}

.photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E9E7E3;
    border-radius: 12px;
}

.photo-section-img {
    position: sticky;
    background-color: #C3D8E2;
    width: 400px;
    height: 300px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.5s;
    
}
.photo-description {
    text-align: center;
}
.gallery {
    width: 400px;
    height: 500px;
}
.photo-section-img:hover {
    z-index: 6;  
    transform: scale(1.1);
    transition-timing-function: ease-out;
}

.show-all {
    background-color: #7B635C;
    font-family: "Roboto Mono", monospace;
    font-size: 18px;
    align-items: center;
    display: flex;
    margin: 0 auto;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
    padding: 5px 35px 5px 40px;
}

.arrow {
    width: 30px;
    height: 30px;
    padding-left: 10px;
}

.show-all:hover {
    transition: 0.2s;
    background-color: hsl(13, 18%, 30%);
    cursor: pointer;
}


/* Order Section */

.order-now {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.joy {
    width: 800px;
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    margin-top: 140px;
    padding-bottom: 10px;
    border-bottom: #7B635C solid;
}

.large-photo-placeholder {
    display: block;
    width: 600px;
    height: 480px;
    background-color: #5F5F5E;
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
}

.order-now-btn {
    margin: 50px 0;
    border: 1px #9E6F51 solid;
    background-color: #F5EAD4;
    text-transform: uppercase;
    color: #9E6F51;
    font-size: 19px;
    border-radius: 50px;
    padding: 12px 100px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;

}

.order-now-btn:hover {
    transform: 0.2s;
    background-color: #ded3bd;
    cursor: pointer;
}

/* Social Media Links */

.contact-us_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.name {
    display: inline-block;
    font-size: 30px;
    font-family: "Tenor Sans", sans-serif;
    font-weight: 200;
    color: #9E6F51;
    padding: 15px 40px;
    border-bottom: 2px #9E6F51 solid;
}

.contact-us-text {
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
}

.social-buttons {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}

.social-buttons-icon {
    width: 30px;
    height: 30px;
    padding-right: 15px;
}

.social-media-btn {
    font-family: "Open Sans", Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7B635C;
    margin: 17px 0;
    font-size: 25px;
    font-weight: 300;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 3px;
    padding: 10px 0;
    width: 500px;
}

.social-media-btn:hover {
    transition: 0.2s;
    background-color: hsl(13, 18%, 30%);
    cursor: pointer;
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7B635C;
    color: #E0D4BD;
    text-align: center;
    padding: 20px;
    margin-top: 150px;
}

.absolute {
    align-items: center;
    position: absolute;  
    top: 100;
    left: 20px;
}

.footer-text {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    color: #E0D4BD;
}

.footer-icon {
   width: 22px;
   height: 22px;
   padding: 3px;
   padding-bottom: 13px;
}

.footer-icon:hover .path{
    transition: 0.2s ;
    fill: #a79f8f;
}

#instagram {
    padding-left: 0;
}

.footer-text-2 {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    color: white;
}

@media screen and (min-width: 1024px) and (max-width: 1500px) {

    /* Header */

    header {
        padding: 3px 5px;
    }
    img.logo {
        width: 40px;
        height: 40px;
    }
    .logoName {
        font-size: 20px;
    }
    nav {
        font-size: small;
    }
    .socialMediaIcon {
        width: 16px;
        height: 16px;
    }
    .social-icons {
        display: inline-flex;
        align-items: center;
    }
    .social-link {
        display: inline-flex;
        align-items: center;
    }
    .first-h2 {
        margin-top: 58px;
    }

    /* Section */
    .anchor {
        height: 58px;
        margin-top: -58px;
    }
    
    h2 {
        font-size: medium;
        padding: 10px 25px;
        border-radius: 0 10px 10px 0;
    }

    .about-content-text {
        width: 450px;
        padding: 20px;
        font-size: 13px;
    }
    .photo-placeholder {
        width: 350px;
        height: 280px;
    }
    .flex {
        padding: 20px;
        justify-content: space-evenly;
    }
    .item {
        margin: 0px 20px 15px 20px;
    }
    h3 {
        font-size: medium;
        margin: 10px;
    }
    p {
        font-size: small;
    }
    .photo-section-img {
        width: calc(var(--index) * 16);
        height: calc(var(--index) * 12);
    }
    .gallery {
        width: calc(var(--index) * 16);
        height: calc(var(--index) * 20);
    }
    .show-all {
        padding: 5px 25px;
        font-size: 13px;
    }
    .arrow {
        width: 20px;
        height: 20px;
    }
    .joy {
        font-size: smaller;
        margin-top: 100px;
        width: 500px;
    }
    .large-photo-placeholder {
        margin-top: 20px;
        width: 375px;
        height: 300px;
    }
    .order-now-btn {
        font-size: smaller;
        margin: 30px 0;
        padding: 8px 75px;
    }
    .name {
        font-size: larger;
        margin: 15px;
        margin-bottom: 20px;
        padding: 10px;
    }
    .contact-us-text {
        font-size: smaller;
    }
    .social-buttons {
        margin-top: 20px;
    }
    .social-media-btn {
        width: 300px;
        margin: 10px;
        padding: 8px 0;
    }
    .social-media-span {
        font-size: 18px;
    }
    .social-buttons-icon {
        width: 24px;
        height: 24px;
    }

    /* Footer */

    footer {
        margin-top: 75px;
        padding: 15px;
    }
    .footer-text {
        font-size: small;
    }
    .footer-text-2 {
        font-size: 12px;
    }
    .footer-icon {
        width: 16px;
        height: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* Header */

    header {
        padding: 7px 5px;
    }
    img.logo {
        width: 30px;
        height: 30px;
    }
    header .logoName {
        padding-left: 15px;
        font-size: 17px;
    }
    nav {
        font-size: 12px;
    }

    header nav a {
        margin: 5px;
    }
    .aNone {
        display: none;
    }
    .toggleCheckbox {
        display: block;
        padding: 5px;
        margin: 5px;
    }
    #toggleElement {
        display: none;
        padding: 0;
        flex-direction: row;
    }
    #toggleCheckbox:checked + #toggleElement {
        display: flex;
    }
    .socialMediaIcon {
        width: 16px;
        height: 16px;
    }
    .social-icons {
        display: inline-flex;
        align-items: center;
    }
    .social-link {
        display: inline-flex;
        align-items: center;
    }
    .first-h2 {
        margin-top: 52px;
    }

    /* Section */
    .anchor {
        height: 52px;
        margin-top: -52px;
    }
    
    h2 {
        font-size: medium;
        padding: 10px 25px;
        border-radius: 0 10px 10px 0;
    }

    .about-content-text {
        width: 350px;
        padding: 15px;
        font-size: 12px;
    }
    .photo-placeholder {
        width: 300px;
        height: 225px;
    }
    .flex {
        padding: 20px;
        justify-content: space-evenly;
    }
    .item {
        margin: 0px 20px 15px 20px;
    }
    h3 {
        font-size: medium;
        margin: 10px;
    }
    p {
        font-size: small;
    }
    .photo-section-img {
        width: 300px;
        height: 225px;
    }
    .gallery {
        width: 300px;
        height: 375px;
    }
    .photo-section, .photo-section-img {
        border-radius: 10px;
    }
    .show-all {
        padding: 5px 25px;
        font-size: 13px;
    }
    .arrow {
        width: 20px;
        height: 20px;
    }
    .joy {
        font-size: smaller;
        margin-top: 100px;
        width: 500px;
    }
    .large-photo-placeholder {
        margin-top: 20px;
        width: 375px;
        height: 300px;
    }
    .order-now-btn {
        font-size: smaller;
        margin: 30px 0;
        padding: 8px 75px;
    }
    .name {
        font-size: larger;
        margin: 15px;
        margin-bottom: 20px;
        padding: 10px;
    }
    .contact-us-text {
        font-size: smaller;
    }
    .social-buttons {
        margin-top: 20px;
    }
    .social-media-btn {
        width: 300px;
        margin: 10px;
        padding: 8px 0;
    }
    .social-media-span {
        font-size: 18px;
    }
    .social-buttons-icon {
        width: 24px;
        height: 24px;
    }

    /* Footer */

    footer {
        margin-top: 75px;
        padding: 15px;
    }
    .footer-text {
        font-size: small;
    }
    .footer-text-2 {
        font-size: 12px;
    }
    .footer-icon {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 767px) {
    /* Header */

    header {
        padding: 6px 5px;
        width: 99%;
    }
    section {
        width: 100%;
    }
    img.logo {
        width: 30px;
        height: 30px;
        z-index: 8;
    }
    .logoName {
        font-size: 17px;
        z-index: 8;
    }
    nav {
        font-size: 12px;
        padding: 0;
    }
    .show-all {
        margin-bottom: 20px;
    }
    .about-content-text {
        margin-top: 0;
    }
    .absolute {
        position: static;
    }
    .social-icons {
        display: none;
    }

    /* Burger menu START */
    .menu__list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #E9E7E3;
        z-index: 1;
        padding:0;
        transition: left 0.5s, right 0.5s;
        left: -115vw;
    }

    .menu-list__item {
        padding-left: 0;
        font-size: 17px;
        margin: 5px;
        padding: 5px;
        margin-left: 50px;
    }

    .menu-list-item__link {
        color: #9E6F51;
        transition: text-shadow 0s;
        margin: 0;
        padding: 0;
    }
    .a-flex {
        margin-top: 50px;
    }



    .burger-menu__container {
        display: block;
        position: relative;
        width: 20px;
        height: 15px;
        z-index: 3;
        margin-right: 20px;
    }
    .burger-menu__container span {
        transition: transform 0.5s;
        position: absolute;
        background-color: #7B635C;
        width: 100%;
        height: 2px;
        left: 0;
        top: 43%;
    }

    .burger-menu__container::after, .burger-menu__container::before {
        transition: transform 0.5s;
        content: '';
        position: absolute;
        background-color: #7B635C;
        width: 100%;
        height:  2px;
        left: 0;
    }
    
    .burger-menu__container::before {
        top: 0;
    }

    .burger-menu__container::after {
        bottom: 0;
    }

    #burger-toggle:checked ~ label::after {
        transform: rotate(-45deg) translate(4px,-5px);
    }

    #burger-toggle:checked ~ label::before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #burger-toggle:checked ~ label span {
        transform: rotate(45deg) translateY(0.5px);;
    }

    #burger-toggle:checked ~ .menu__list {
        left: 0;
    }  

    .burger-menu__container {
        display: block;
        position: relative;
        width: 20px;
        height: 15px;
        z-index: 3;
        margin-right: 20px;
    }


    /* Burger menu end */

    .hidden-menu {
        box-shadow: none;
    }
    .hidden-menu-link {
        background-color: #e1ded7;
        padding: 10px 15px;
        border: none;
    }
    .a-flex {
            flex-direction: row;
    }
    header nav a {
        margin: 5px;
    }
    .aNone {
        display: none;
    }
    .toggleCheckbox {
        display: block;
        padding: 0;
    }
    #toggleElement {
        display: none;
        padding: 0;
        flex-direction: row;
    }
    #toggleCheckbox:checked + #toggleElement {
        display: flex;
    }
    .socialMediaIcon {
        width: 16px;
        height: 16px;
    }

    .first-h2 {
        margin-top: 52px;
    }

    /* Section */
    .anchor {
        height: 52px;
        margin-top: -52px;
    }
    
    h2 {
        font-size: medium;
        padding: 10px 0;
        width: 100%;
        border-radius: 0;
    }
    .about-content {
        flex-direction: column;
        padding: 40px 0;
    }

    .about-content-text {
        display: block;
        text-align: center;
        max-width: calc(100vw - 78px);
        border-left: none;
        border-right: none;
        border-radius: 0;
        padding: 15px 40px;
        font-size: 12px;
        margin-bottom: 30px;
    }
    .photo-placeholder {
        width: 300px;
        height: 225px;
    }
    .flex {
        padding: 20px 10px;
        justify-content: space-evenly;
        align-items: flex-end;
    }
    .item {
        margin:  0 5px;
        text-align: center;
    }
    h3 {
        font-size: 14px;
        margin: 10px;
    }
    p {
        font-size: small;
    }
    .photo-description {
        max-width: calc(180px - 8px);
        padding: 0 5px;
        font-size: 12px;
    }
    #p-bottom {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .gallery-flex {
        display: flex;
    }
    .gallery-item {
        margin: 8px;
    }
    .photo-section, .photo-section-img {
        border-radius: 8px;
    }
    .show-all {
        padding: 5px 25px;
        font-size: 13px;
        margin-bottom: 40px;
    }
    .arrow {
        width: 20px;
        height: 20px;
    }
    .joy {
        font-size: smaller;
        margin-top: 70px;
        width: 500px;
    }
    .large-photo-placeholder {
        margin-top: 20px;
        width: 375px;
        height: 300px;
    }
    .order-now-btn {
        font-size: smaller;
        margin: 30px 0 40px 0;
        padding: 8px 75px;
    }
    .name {
        font-size: larger;
        margin: 15px;
        margin-bottom: 20px;
        padding: 10px;
    }
    .contact-us-text {
        font-size: smaller;
    }
    .social-buttons {
        margin: 20px 0 40px 0;
    }
    .social-media-btn {
        width: 300px;
        margin: 10px;
        padding: 8px 0;
    }
    .social-media-span {
        font-size: 18px;
    }
    .social-buttons-icon {
        width: 24px;
        height: 24px;
    }

    /* Footer */

    footer {
        flex-direction: column-reverse;
        margin-top: 30px;
        padding: 0;
    }
    .footer-text {
        font-size: small;
        margin-bottom: 6px;
    }
    .footer-text-2 {
        font-size: 12px;
        margin-top: 6px;
    }
    .footer-icon {
        width: 16px;
        height: 16px;
        padding-bottom: 10px;
    }


    .photo-section-img {
        width: 300px;
        height: 225px;
    }
    .gallery {
        width: 300px;
        height: 375px;
    }
    h3 {
        margin-top: 20px;
    }
    .joy {
        max-width: 90vw;
        text-align: center;
        border: none;
        text-decoration: underline 2px;
    }
    .large-photo-placeholder {
        width: 300px;
        height: 225px;
    }
}
