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

@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');


* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    height: max-content;
    background-color: rgb(255, 255, 255);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

body video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

:root {
    --text-color: ;
}

/* header styling */

#header {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.024);
    background: transparent;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 20px;
    left: 125px;
    border-radius: 50px;
    margin: auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    z-index: 2000;
}

#header::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent)
}

#header span {
    color: #ffffff;
    font-weight: 800;
    background: transparent;
    cursor: pointer;
}



#header #navbar {
    background: transparent;
}

.cart-bar{
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#header .menu {
    height: 20px;
    width: 20px;
    color: #BF40C2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-bar a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BF40C2;
    text-decoration: none;
}

/* #header .cart {
    height: 20px;
    width: 20px;
    color: #BF40C2;
    display: none;
} */

#header a{
    text-decoration: none;
}

#header #navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

#header #navbar ul li {
    list-style: none;
    padding: 10px 20px;
    background: transparent;
    position: relative;

}

#header #navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: 800;
    background: transparent;
    transition: all 0.3s ease;
}

#header #navbar ul li a:hover,
#header #navbar ul li .active {
    color: #BF40C2;
}

#header #navbar ul li a.active::after,
#header #navbar ul li a:hover::after {
    content: "";
    width: 30%;
    animation: underline 0.3s ease;
    height: 2px;
    background-color: #BF40C2;
    position: absolute;
    bottom: 2px;
    left: 20px;
}

@keyframes underline {
    0% {
        width: 0px;
    }

    100% {
        width: 30%;
    }
}

@media (max-width: 1024px) {
    #header {
        position: fixed;
        top: 20px;
        left: 70px;
    }
}

@media (max-width: 500px) {
    #header {
        position: fixed;
        top: 20px;
        left: 35px;
    }
}

@media (max-width: 750px) {
    #header #navbar {
        display: none;
    }

    #header .cart-bar {
        display: flex;
    }

    /* #header .cart {
        display: block;
    } */
}

/* hambuger */



#menu-bar {
    position: fixed;
    /* display: flex; */
    top: 0px;
    right: -250px;
    height: 100vh;
    width: 250px;
    background-color: white;
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: 0.5s;
    /* background: radial-gradient(200px circle at -20% 15%, rgb(255, 255, 255), transparent); */
}

.shift {
    right: 0px;
}

#menu-bar #navbar {
    display: flex;
}


#menu-bar #navbar .cut {
    display: flex;
    align-items: start;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #BF40C2;
}

#menu-bar #navbar ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px;
}

#menu-bar #navbar ul li {
    list-style: none;
    padding: 10px;
}

#menu-bar #navbar ul li a {
    text-decoration: none;
    color: #BF40C2;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 600;
}


/* home styling */
#hero {
    width: 80%;
    margin: auto;
    margin-top: 100px;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 100;
}

#hero .content {
    padding-top: 50px;
}

#hero h2 span {
    color: red;
}

#hero p {
    padding-top: 111px;
    color: white;
    width: 525px;
}

@media (max-width: 400px) {
    #hero .content {
        font-size: 26px;
    }
}

#catagories {
    padding: 80px 111px 0px 111px;
    height: max-content;
}

#catagories .catagory{
    color: white;
    font-size: 20px;
    font-family: 'Poppins';
}

#catagories .catagory ul {
    display: flex;
    align-items: center;
}

#catagories .catagory ul li {
    list-style: none;
    padding: 0 10px;
    color: white;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    cursor: pointer;
}

#catagories .catagory ul .active1 {
    color: red;
}

@media (max-width: 700px) {
    #catagories .catagory ul {
        display: none;
    }

    #hero p {
        display: none;
    }

    #catagories .cat {
        display: flex;
        align-items: center;
    }

    #catagories .cat i {
        display: block;
    }

    #catagories {
        padding: 80px 111px 0px 45px;
    }
}

#products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 40px 111px;

}

.pro {
    background: transparent;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 5px;
    padding: 20px 20px 10px 20px;
    background: radial-gradient(200px circle at 50% 125%, rgb(255, 255, 255), transparent);
}

.pro img {
    object-fit: cover;
    height: 250px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pro img:hover {
    scale: 1.02;
}

.pro p {
    height: max-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-family: "Poppins", sans-serif;
    color: #BF40C2;
    font-weight: 800;
}

#valentine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F7F7F7;
    padding: 80px 70px;
    margin: auto;
}

#valentine .pimg {
    height: 350px;
    /* width: 40vw; */
}

@media (max-width: 550px) {
    #valentine .pimg {
        height: 240px;
    }

    #products {
        display: flex;
        justify-content: center;
        padding: 40px 0px;
    }
}

#valentine .lines {
    display: flex;
    flex-direction: column;
    font-family: "Playfair Display", serif;
}

#valentine .lines h1 {
    font-weight: 100;

}

#valentine .lines h1 span {
    color: red;
}

#valentine .lines p {
    padding-top: 20px;
    color: gray;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1025px) {
    #valentine {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}

#flower-expert {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    padding: 100px 60px;
}

#flower-expert .headings {
    font-family: "Playfair Display", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
}

#flower-expert .headings h1 {
    color: black;
    font-weight: 200;
    padding: 20px;
}

#flower-expert .headings p {
    color: gray;
    padding: 5px;
}

#flower-expert .profiles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

#flower-expert .profiles .profile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Poppins';
}

#flower-expert .profiles .profile img {
    padding: 20px 0px;
}

#flower-expert .profiles .profile .name {
    font-weight: 400;
}

#flower-expert .profiles .profile .best {
    color: gray;
    font-family: "Playfair Display", serif;
}

@media (max-width: 1025px) {
    #flower-expert .profiles .profile {
        width: 300px;
    }

    #flower-expert .profiles {
        display: flex;
        justify-content: space-evenly;
    }

}

#join {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 150px;
    background-image: url("home-img/pub2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#join h1 {
    font-family: "Playfair Display", serif;
    color: white;
}

#join .e-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

#join .e-button .email {
    padding: 20px;
    width: 35vw;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    outline: none;
    color: gray;
}

#join .e-button button {
    padding: 19px 30px 19px 30px;
    border: none;
    background-color: #f73c0d;
    color: white;
    font-family: 'Poppins';
    font-size: 10px;
    letter-spacing: 2px;
}


#footer {
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    background-color: #FEFAF3;
    padding: 80px 100px 20px 100px;
    gap: 20px;
}

#footer .cust-serv,
.social-media,
.archive,
.company {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

#footer .cust-serv ul,
.social-media ul,
.archive ul,
.company ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

#footer .cust-serv ul li,
.social-media ul li,
.archive ul li,
.company ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#footer .cust-serv span,
.social-media span,
.archive span,
.company span {
    font-family: 'Poppins';
    text-transform: uppercase;
    font-size: 13px;
}


#footer .cust-serv ul li a,
.social-media ul li a,
.archive ul li a,
.company ul li a {
    text-decoration: none;
    color: gray;
    font-family: 'Poppins';
    font-size: 12px;
    transition: all 0.4s ease;
}

#footer .cust-serv ul li a:hover,
.social-media ul li a:hover,
.archive ul li a:hover,
.company ul li a:hover {
    color: #BF40C2;
}

#footer hr {
    width: 100%;
    margin: auto;
    margin-top: 70px;
}

.copy-pay-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Poppins';
    color: gray;
    font-size: 12px;
}

.copy-pay-link .copy a{
    text-decoration: none;
}

.copy-pay-link .copy span {
    color: #BF40C2;
    cursor: pointer;
    transition: all 0.5s ease;
}

.copy-pay-link .copy span:hover {
    text-decoration: underline;
}

.copy-pay-link .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copy-pay-link .links a{
    text-decoration: none;
    color: gray;
}

.copy-pay-link .links span:hover {
    color: #BF40C2;
    cursor: pointer;
    transition: all 0.4s ease;
}

@media (max-width: 1025px) {
    .copy-pay-link {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    #footer {
        display: flex;
    }

    #footer .cust-serv,
    .social-media,
    .archive,
    .company {
        width: 300px;
        align-items: start;
    }


}
