@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Mrs+Saint+Delafield&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora','Tangerine', sans-serif;
}

.btn {
    padding: 10px;
    border: 1px solid #bd8200;
    color: white;
    border-radius: 15px;
}

/* Navbar */
#header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 25px 0 25px;
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
}

#navbar {
    display: flex;
    list-style: none;
}

#navbar li {
    margin-right: 25px;
    padding-top: 20px;
}

#navbar a .logo {
    margin-right: 100px;
    margin-left: 100px;
}

#navbar a {
    color: white;
    text-decoration: none;
    margin-right: 30px;
}

#navbar a:hover {
    color: #bd8200;
}


/* First Banner */

body {
    background-image: url("img/pexels-emre-can-acer-2079438.jpg");
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
}

#hero {
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0,0,0,0.7);
}

#hero h4{
    color: white;
    font-size: 35px;
    font-weight: 300;
}

#hero h1{
    font-family: 'Mrs Saint Delafield', cursive;
    color: #bd8200;
    font-weight: 100;
    font-size: 60px;
    margin-top: -28px;
    transition: 2s ease;
}

#hero h1:hover{
    font-size: 80px;
}


/* Icons Section */

#icons {
    width: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding-top: 40px;
    padding-bottom: 50px;
    height: 250px;
}

#icons .icon {
    text-align: center;
    margin-right: 100px;
    margin-left: 100px;
}

#icons i{
    color: #bd8200;
    font-size: 45px;
    margin-bottom: 15px;
}

#icons .icon h5 {
    color: white;
}

/* About Us Section */

#about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 450px;
    background: black;
}

#about-us .image img {
    height: 450px;
    width: 450px;
    margin-left: 100px;
    margin-right: 100px;
}

#about-us .article {
    color: white;
    width: 40%;
    margin-right: 100px;
}

#about-us .article h3 {
    font-family: 'Mrs Saint Delafield', cursive;;
    font-size: 85px;
    margin-bottom: 10px;
    font-weight: 200;
}

#about-us .article .paragraph {
    color: #bd8200;
}

/* Reviews Section */

#reviwes {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

#reviwes img {
    height: 20%;
    width: 20%;
    opacity: 70%;
    margin: 100px 50px 50px 50px;
}


/* Menu section */

#products {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(180deg, black, rgb(77, 77, 77));
    text-align: center;
}


#products h2 {
    padding-top: 80px;
    margin-bottom: 30px;
    color: white;
    font-weight: 300;

}

#products h2 span {
    font-family: 'Mrs Saint Delafield', cursive;
    color: #bd8200;
    font-size: 55px;
}


#products p {
    
    padding-bottom: 30px;
    color: white;
}


#products .product-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 450px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#products .pro-section {
    width: 300px;
    height: 190px;
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s ease-out;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 15px;
    margin-bottom: 80px;
    text-align: center;
    overflow: hidden;

}

#products .pro-section:hover {
    height: 600px;
    overflow: visible;
    
}

#products .pro-section:hover .img-box {
    width: 200px;
    height: 200px;
    transform: translate(25%, -26%);
}

#products .pro-section .img-box {
    width: 150px;
    height: 150px;
    transform: translate(49%, -20%);
    border-radius: 20px;
    transition: 0.6s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid #bd8200;
}

#products .pro-section .img-box img {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

#products .pro-section .img-box:hover {
    width: 200px;
    height: 200px;
    transform: translate(25%, -26%);
}


#products .pro-section .pro-des h4 {
    color: black;
    font-weight: 700;
    font-size: 21px;
}

#products .pro-section .pro-des p {
    color: black;
    margin-top: 22px;
    margin-bottom: 20px;
    padding-bottom: 0;
}

#products .pro-section .pro-des p span {
    font-weight: 800;
}

#products .pro-section .pro-des .btn {
    border: 1px solid black;
    color: #bd8200;
    background: transparent;
}


/* Contact Section */

#contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: black;
    color: white;
    height: 650px;
}

#contact .des {
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;

}

#contact .des h2 {
    font-family: 'Mrs Saint Delafield', cursive;
    color: #bd8200;
    font-size: 75px;
    font-weight: 300;
}

#contact .des p {
    margin-bottom: 55px;
}

#contact .des ul {
    list-style: none;
}

#contact .des li {
    margin-bottom: 20px;
}

#contact .des li span {
    color: #bd8200;
}

#contact .map {
    margin-left: 50px;
    margin-right: 50px;
}

/* Gallery */

#gallery {
    position: relative;
    height: 100vh;
    background: linear-gradient(180deg, rgb(77, 77, 77), black);
}

#gallery h1 {
    font-size: 40px;
    color: white;
    text-align: center;
}

#gallery .image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
}

#gallery .image-container .image {
    height: 250px;
    width: 350px;
    border: 5px solid #bd8200;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(102, 102, 102, 0.3);
    overflow: hidden;
    cursor: pointer;
}

#gallery .image-container .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1s ease-in-out;
}

#gallery .image-container .image:hover img {
    transform: scale(1.1);
}

#gallery .popup-image{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}

#gallery .popup-image span {
    position: absolute;
    top: 0;
    right: 30px;
    font-weight: 700;
    font-size: 70px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

#gallery .popup-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #bd8200;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

/* Footer */

footer {
    background-color: black;
    color: gray;
    text-align: center;
    font-size: 7px;
}

@media (max-width: 768px){
    #gallery .popup-image img {
        width: 95%;
    }
}