*{
    padding: 0;
    margin: 0;
    font-family:"PlayFair Display";
}
@font-face {
    font-family: "Futura";
    src: url(FuturaCyrillicHeavy.ttf);
}
.whatsapp a img{
    width: 60px;
    position:fixed;
    right: 3vw;
    top:85vh;
    z-index: 3;
}
nav{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 30px;
    z-index: 5;
    position: fixed;
    top: 0;
    color: black;
    background-color: white;
    gap: 60%;
    box-shadow: 0px 0px 2px 0px black; 
} 
nav a{
    text-decoration: none;
    color: inherit;
}
nav ul{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;  
}
nav ul li{
    position: relative;
    font-size: medium;
    list-style: none;
    cursor: pointer;
}
nav ul li:hover{
    color: #c9a961;
}
nav ul li::after{
    content: '';
    height: 1.5px;
    width: 0%;
    left: 0;
    bottom: -5px;
    position: absolute;
    background-color: #c9a961;
    transition: 0.3s ease;
}
nav ul li:hover::after{
    width: 100%;
}


.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.852);
    z-index: 2;
}
.hero{
    scroll-margin: 110px;
    margin-top: 80px;
    position: relative;
    height: 80vh; 
    overflow: hidden;
}
.hero-content{
    position: relative;
    z-index: 3;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding-left: 60px;
    font-size: x-large;
    gap: 30px;
    animation: move 1.25s ease;
}
@keyframes move {
    from{
        transform: translateY(400px) scale(0.2);

    }
    to{
        transform: translateY(0px) scale(1);
    }
}
.hero-content span{
    color: #c9a961;
}
.hero img.slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero img.active{
    opacity: 1;
}


.contact-form{
    width: 30vw;
    height: 80vh;
    background-color:white;
    display: none;
    flex-direction: column;
    justify-content: center;
    position: fixed; 
    gap: 0;
    border-radius: 20px;
    top:15%;
    left: 35%;
    z-index: 6;
    box-shadow: 0px 0px 4px 1px;
    animation: move 1s;
}
.contact-form.show{
    display: flex;
    opacity: 1;
}
.contact-form img{
    position: absolute;
    top: 5%;
    right: 7%;
    width: 1.5vw;
    cursor: pointer;
}
.contact-form h2{
    color: #c9a961;
    align-self: center;
    position: relative;
    margin-top:10px;

}
.contact-form h2::after{
    content: '';
    position: absolute;
    background-color: #c9a961;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -10px;
}
form{
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 50px;
    gap: 20px;
    margin-top: 0px;
}
label{
    display: flex;
    gap: 20px;
}
input{
    width: 200px;
    height: 25px;
    padding-left: 10px;
    border: 1px solid black;
    border-radius: 5px;
    outline:none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus{
    border: 2px solid #0b57d0;
}
::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
select{
    width: 200px;
    height: 35px;
    border: 1px solid black;
    border-radius: 5px;
}
button{
    position: relative;
    text-align: center;
    background-color: transparent;
    width: 100px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid black;
    overflow: hidden;
    cursor: pointer;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0b57d0;
  transition: left 0.4s ease;
  z-index: -1;
}
button:hover {
  color: #fff;
}

button:hover::before {
  left: 0;
}


.categories{
    scroll-margin-top: 110px; 
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: larger;
    background-color: #91919107;
}
.categories h2{
    color: #c9a961;
    position: relative;
}
.categories h2::after{
    content: '';
    position: absolute;
    background-color: #c9a961;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -10px;
}
.categories-card{
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    margin-top: 50px;
}
.category-card{
    width: 400px;
    height: 400px; 
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0px 0px 3px 0px black; 
    background-color: white;  
    transform: translateY(0) scale(1);
    transition:transform 0.45s cubic-bezier(.22,.61,.36,1);
}
.category-card:hover{
    transform: translateY(-10px) scale(1.015);
}
.category-card p{
    margin-top: 5px;
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
}
.category-card img{
    position: relative;
    width: 100%;
    height: 350px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;  
}


.scroller h2{
    display: flex;
    justify-self: center;
    color: #c9a961;
    position: relative;
    font-size: xx-large;
}
.scroller h2::after{
    content: "";
    height: 2px;
    width: 100%;
    top: 45px;
    position: absolute;
    left: 0;
    background-color: #c9a961;
    
}
.scroller{
    width: 100%;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    overflow:hidden;
    gap: 40px;
    white-space: nowrap;
    display: inline-block;
}
.scroll-items{
    display: inline-block;
    animation: slide 10s linear infinite;
    padding: 0px;
    margin-top: 80px;
    padding-bottom: 40px;  
}
.scroller:hover .scroll-items{
    animation-play-state: paused;
}
.scroll-items img{
    height: 100px;
    width: 100px;
    object-fit: contain;
    margin: 0 30px;
}
@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}


.our-story{
    padding: 60px;
}
.our-story h2{
    display: flex;
    justify-self: center;
    color: #c9a961;
    position: relative;
    font-size: xx-large;
}
.our-story h2::after{
    content: "";
    height: 2px;
    width: 100%;
    top: 45px;
    position: absolute;
    left: 0;
    background-color: #c9a961; 
}
.our-content{
    padding: 40px;
    line-height: 40px;
}
.our-story li{
    list-style: none;  
}


.location{
    width: 100%;
}
.location h2{
    position: relative;
    display: flex;
    justify-self: center;
    margin-top: 60px;
    padding-bottom: 40px;
    color: #c9a961;
}
.location h2::after{
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 30px;
    background-color: #c9a961;
}
.location iframe{
    height: 60vh;
    width: 40%;
    display: flex;
    justify-self: center;
    padding: 20px;
    border: none;
}
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    font-size: small;
    background-color: #91919107;
}
.quick a{
    color: inherit;
    text-decoration: none;
}
.quick h3{
    display: flex;
    justify-self: center;
    color: #c9a961;
    position: relative;
    font-size: large;
}
.quick h3::after{
    content: "";
    height: 2px;
    width: 100%;
    top: 25px;
    position: absolute;
    left: 0;
    background-color: #c9a961;
}
.quick ul{
    padding: 30px;
    list-style: none;
    line-height: 30px;
}




@media screen and (max-width:750px) {
    nav ul{
        display: none;
    }
    .contact-form{
        width: 90vw;
        height: 70vh;
        top:15%;
        left: 5%;
    }
    .contact-form img{
        width: 5vw;
    }
    .scroller h2{
        font-size: x-large;
    }
    .categories h2{
        font-size: x-large;
    }
    .categories-card{
        grid-template-columns: auto;
    }
    .category-card{
        width:300px;
        height: 350px;
    }
    .category-card img{
        width: 300px;
        height: 300px;
    }
    .our-story{
        padding: 20px;
    }
    .our-story h2{
        font-size: x-large;
    }
    .our-content{
        padding: 0;
        margin-top: 20px;
    }
    .location h2{
        font-size: x-large;
    }
    .location iframe{
        width: 90vw;
        height: 40vh;
    }
    .whatsapp a img{
         top:85vh;
         right: 10vw;
    }
}
