
@font-face {
      font-family: 'Edwardian Script ITC';
      src: url('../Fonts/edwardianscriptitc.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
}

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

/*html, body{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.cursor, .circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: white;
    border: 4px solid black;
    border-radius: 100%;
}

.cursor#main{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
}*/

.logo h1 {
    font-family: "Edwardian Script ITC";
    Color: #d7ce93;
    letter-spacing: 3px;
    text-shadow: 1px 1px 4px #000000;
    z-index: 2;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #81916e;
    border-radius: 10px;
    z-index: 1;
}

nav {
    flex: 1;
    text-align: right;
    z-index: 1;
}

nav ul {
    display: inline-block;
    list-style-type: none;
    z-index: 2;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #d8a48f;
    text-shadow: 2px 2px 5px #bb8588;
}

p {
    color: #ffffff;
    text-shadow: 2px 2px 5px #000000;

}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.section, .aside {
    flex-basis: 48%;
    min-width: 300px;
    margin-top: 30px;
}

.section {
    background-color: #bb8588;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.aside {
    background-color: #d8a48f;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.aside img{
    width: 100%;
    clip-path: polygon(15% 0, 84% 0, 100% 15%, 100% 87%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.window img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    border-radius: 30px;
    z-index: -1;
    mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to left, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent),
        linear-gradient(to top, transparent, black 10%, black 90%, transparent);
    mask-composite: intersect;
    border-radius: 10px;
    position: fixed;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.section h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}

.btn {
    display: inline-block;
    background: #d8a48f;
    color: #ffffff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}

.btn:hover{
    background: #563434
}

.header {
    background: radial-gradient(#efebce,#d7ce93)
}

.categories{
    margin: 70px;
}

.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img:hover{
    transform: translateY(-5px);
}

.col-3 img{
    width: 100%;
    clip-path: polygon(15% 0, 84% 0, 100% 15%, 100% 87%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    transition: transform 0.5s;
}

.col-3 h2{
    text-align: center;
}

.small-container{
    max-width: 1080px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding-top: 25px;
}

.favorite-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

.col-4 img{
    width: 100%;
    clip-path: polygon(15% 0, 84% 0, 100% 15%, 100% 87%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.col-4 p{
    color: #000000;
}

.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
}

.title::after{
    content: '';
    background: #81916e;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h4{
    color: #000000;
    font-weight: normal;
}

.col-4 p{
    font-size: 14px;
}

.rating p{
    color: #d8a48f;
}

.col-4:hover{
    transform: translateY(-5px);
}

.favorite{
    background: radial-gradient(#efebce,#d7ce93);
    margin-top: 80px;
    padding: 30px 0px;
}

.col-2{
    flex-basis: 50%;
}

.col-2 img{
    padding: 20px;
    width: 100%;
    clip-path: polygon(15% 0, 84% 0, 100% 15%, 100% 87%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

small{
    color: #bb8588;
}

/*------------ Footer --------------*/

.footer{
    background: #81916e;
    color: #d8a48f;
    font-size: 14px;
    padding: 60px 0 20px;
}

.footer p{
    color: #bb8588;
}

footer h3{
    color: #fff;
    margin-bottom: 20px;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col-1{
    flex-basis: 30%;
}

.footer-col-1 img{
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-2{
    flex: 1;
    text-align: center;
}

.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}

.footer-col-3 ul, .footer-col-4 ul{
    list-style-type: none;
}

.footer-col-4 img{
    width: 10%;
}


.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
}

/*---------- media query for menu ----------*/

@media only screen and (max-width: 800px){
    nav ul{
        position: fixed;
        top: 70px;
        right: 0;
        background: #81916e;
        width: 100px;
        overflow: hidden;
        transition: max-height 0.5s;
        border-radius: 10px;
        margin-right: 24px;
        padding-left: 15px;
    }

    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;

    }

     nav ul li a{
        color: white;
        display: block;
        text-decoration: none;
        text-align: center;
     }

     .menu-icon{
        display: block;
        cursor: pointer;
     }

     nav ul li a:hover{
        background-color: #d7ce93;
        border-radius: 15px;
        transition-duration: 0.5s;
     }

}

/*----media query for less than 600 screen size---*/
@media only screen and (max-width: 800px){
    .row{
        text-align: center;
    }

    .col-2, .col-3, .col-4{
        flex-basis: 100%;
    }

    .col-3{
        margin-left: 0px;
        padding-left: 0px;
    }

    .col-3 img{
        max-width: 40vw;
        margin-left: 0px;
        padding-left: 0px;
    }

    .col-4{
        max-width: 300px;
    }

    .col-2 img{
        max-width: 400px;
    }
}

#storefront{
    background: linear-gradient(#d8a48f,#bb8588);
}

/*
#d7ce93
#efebce
#81916e
#d8a48f
#bb8588
#464f3b
*/
