@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: ghostwhite;
    padding-bottom: 20px;
    text-align: center;
    font-family: cursive;
    animation: animate 1s ease-in-out infinite alternate;
}

@keyframes animate{
    from{
        text-shadow: 0 0 20px darkorchid;
    }
    to{
        text-shadow: 0 0 40px darkorchid,
                    0 0 10px darkorchid;
    }
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: ghostwhite;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
    text-shadow: 3px 3px black;
}

h3 {
    font-size: 1.4rem;
    font-weight: 400;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: ghostwhite;
    text-align: center;
    padding-top: 100px;
}

h5 {
    font-size: 1rem;
    font-weight: 400;
    color: black;
}

h6 {
    color: ghostwhite;
    text-align: center;
}

p {
    font-size: 20px;
    color: white;
    text-align: center;
    padding-top: 20px;
    text-shadow: 2px 2px black;    
}

.navbar{
    font-size: 16px;
    top: 0;
    left: 0;
    background-color: black;
}
.navbar-light .navbar-toggler {
    position: ;
}

.navbar-light .navbar-nav .nav-link{
    padding: 0 20px;
    color: palevioletred;
    transition: 0.3s ease; 
    justify-content: right;
    align-items: right;
    text-align: right;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar i.active {
    color: darkorchid;
}

.navbar i {
    font-size: 1.2rem;
    padding: 0 7px;
    cursor: pointer;
    transition: 0.3s ease;
    color: palevioletred;
}

#bag{
    font-size: 1.25rem;
    position: relative;
    left: 93%;
    justify-content: right;
    align-items: right;
}

.cart-items {
    position: fixed;
    top: 12px;
    right: 20px;
    height: 20px;
    background: palevioletred;
    padding: 0 3px;
    border-radius: 30%;

}

#bar{
    font-size: 1.5rem;
    padding: 7px;
    cursor: pointer;
    transition: 0.3s ease;
    color: palevioletred;
    position: relative;
    
}   

#bar:hover,
#bar:active {
    color: darkorchid;
    
}

.why-section {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping */
            width: 100%;
            margin-left: 5%;
            margin-right: 15%;
            margin-top: 50px;
            padding-bottom: 50px;
            background: black;
        }

        /* Title and Text Layout */
        .why-text {
            flex: 1;
            height: auto;
            padding: 10px;
            
            font-size: 18px;
            line-height: 1.6;
            text-align: center;
            margin-right: 5%;
            
            
        }
        
        .why-text h1 {
            margin-top: 0px;
            text-align: center;
            font-size: 42px;
            display: flex;
            justify-content: center;
        }
        
        .why-text p {
            margin-left: 75px;
            margin-right: 15px;
            margin-bottom: 500px;
            padding-top: 0;
            text-align: center;
            align-content: center;
        }
        
        /* Image Layout */
        .why-image {
            flex: 1;
            max-width: 100%;
            height: auto;
            margin-right: 25px;
            margin-bottom: 50px;
            position: relative;
            float: left;
           
        }
        
        /* Social Media Links */
        .social-links {
            width: 100%;
            margin-top: 5%;
            margin-bottom: 5%;
            display: flex;
            justify-content: center;
        }
        
        .social-links ul {
           width: auto; 
           
        }
        
        .social-links a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            margin: 0 5%;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #f4f4f4;
        }

@media only screen and (max-width: 1100px) {
    body>nav>div>button:hover,
    body>nav>div>button:focus {
        background-color: darkorchid;
    }
    body>nav>div>button:hover #bar,
    body>nav>div>button:focus #bar {
        color: palevioletred;
    }
    #navbarSupportedContent > ul{
        margin: 1rem;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }
    
    #navbarSupportedContent > ul > li:nth-child(n) > a{
         padding: 10px 0;
    }
}
@media only screen and (max-width: 865px) {
    .why-image {
            flex: 1;
            max-width: 60%;
            height: auto;
            margin-right: 5px;
            margin-bottom: 0px;
            position: relative;
            float: left;
        }
    .why-text p {
        font-size: 20px;
        margin-left: 15px;
        margin-right: 25px;
        margin-bottom: 40%;
        text-align: center;
    }
}
@media only screen and (max-width: 425px) {
    .why-text h1 {
        margin-top: 5px;
        text-align: center;
        font-size: 28px;
    }
    .why-text p {
        font-size: 14px;
    }
    .statement h1 {
        font-size: 36px;
    }
    .statement h2 {
        font-size: 24px;
    }
    .statement p {
        font-size: 18px;
    }
}

/* Mobile Nav */

.navbar-light .navbar-toggler{
    border: none;
    outline: none;
    
}


#hero{
    background-image: url(Images/IMG_6271.jpg);
    background-color: rgba(75, 0, 75, 0.25);
    height: 200vh;
    width: auto;
    background-size: stretch;
    background-position: top 75px center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
      
}

#hero::before{
    content: "";
    position: absolute;
    height: 200vh;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;   
}

.statement h1 {
    text-align: left;
}



h1 {
    color: rgb(255, 255, 255);
}

#featured{
    background-color: darkorchid;
    height: auto;
    width: auto;
    background-size: cover;
    background-position: bottom 0%;
    padding-bottom: 0;
    
}

.products{
    width: 23%;
    height: auto;
    min-width: 50px;
    border: 1px solid ghostwhite;
    padding-top: 20px;
    

}

.products .img-fluid {
    max-height: 350px;
    min-height: auto;
    
}
.products .img-fluid:hover {
    cursor: pointer;
    color: white;
    transition: all 0.3s ease-in-out;
}
.product-container {
    background-color: white;
    padding-bottom: 10rem;
    padding-top: 10rem;
    object-position: top;
    display: flex;
    flex-wrap: wrap;
    background-size: contain;
    width: auto;
}
.product-container .product-main {
    position: static;
    height: 500px;
    
    width: 375px;
    
    overflow: hidden;

}
.product-container .product-main img {
    height: 100%;
    min-height: 500px;
    padding-top: 15%;
    padding-left: -10;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 375px;
    
}
.carousel_container {
    display: grid;
    height: fit-content;
    width: 20%;
    margin-top: 100px;
    padding-left: auto;
    margin-right: 0;
    margin-left: 5%;
    justify-items: center;
    justify-content: center;
    
}
.carousel {
    align-items: flex-start;
    display: flex;
    margin: 0rem 0rem;
    position: relative;
    width: 75px;
    height: 375px;
    overflow: hidden;
    overflow-y: scroll;
    justify-content: center;
    padding: 0 0;
   
}
.small-img-group{
    display: flex;
    justify-content: center;
    width: auto;     
}

 .small-img-col {
    flex-basis: 100%;
    cursor: pointer;
    height: 150vh;
    width: 225px;
    justify-content: center;
    border: black;

}
.small-img-col .grid-col img{
    width: 100%;
    height: auto;
    border: 1px solid palevioletred;
    
    
    
}
.blog-content {
    height: auto;
    width: 50%;
}

ul {
    list-style: none;
    align-content: space-between;
    
}

.previous {
    border: none;
    outline: none;
    color: black;
    background-color: transparent;
    cursor: pointer;
    height: 1rem;
    width: 3rem;
    justify-content: center;
    justify-items: center;
    padding-bottom: 10;   
}
.next {
    border: none;
    outline: none;
    color: black;
    background-color: transparent;
    cursor: pointer;
    height: 1rem;
    width: 3rem;
    justify-content: center;
    align-items: center;   
}
.descrption {
    display: grid;
    position: absolute;
    float: right;
    width: 100px;
    
}
.descrption > p {
    color: black;
}
#upgrade {
    height: 7px;
}


.star {
    color: gold;  
}

h1 {
    padding-top: 10px;

}

.fe-box {
    background-color: whitesmoke;
}

.welcome-container {
    background-color: black;
}
.welcome-container .container {
   background-color: black;
}

#welcome .img-fluid [
    max-width: 50%;
    padding-top: 20%;
]

h1 {
    padding-top: 100px;
}

#Top {
    height: 200px;
    background-color: black;
}

#Top2 {
    height: 100px;
    background-color: white;
}


.about-container {
    background-color: black;
}
.about-container .container {
    background-color: black;
    justify-items: center;
    border: none;
    outline: none;
}

.about2-container {
    background-color: palevioletred;
}
.about2-container .container {
    background-color: palevioletred;
    justify-items: center;
    align-items: center;
    border: none;
    outline: none;
    box-shadow: none;
}
.about2-container .container p {
    padding-top: 25%;
}
.about3-container {
    background-color: white;
}
.about3-container .container {
    background-color: white;
    justify-items: center;
    border: none;
    outline: none;
    box-shadow: none;
    padding-bottom: 10%;
}
.about3-container .container p {
    padding-top: 25%;
}

.footer-container {
    background-color: palevioletred;
    padding-bottom: 4rem;
    padding-top: 4rem;
    object-position: bottom;
    display: flex;
    background-size: cover;
    width: 100%;
}

.footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto; 
    border: none;
    padding-bottom: 0;
   
}

.footer-heading {
    display: flex;
    flex-direction: column;
    margin-right: 0rem;
    padding-top: 5%;
}

.footer-heading p {
    margin-bottom: 2rem;
}

.footer-heading a {
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-heading a:hover {
    color: darkorchid;
    transition: 0.3s ease-out;
}

#footer-email {
    width: 250px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    
}

#footer-email::placeholder {
    color: #b1b1b1;
}

#footer-email-btn {
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color: black;
    outline: none;
    border: none;
    color: white;
}

#footer-email-btn:hover {
    cursor: pointer;
    background-color: darkorchid;
    transition: all 0.4s ease-out;
}

.footer-center p{
    
    font-size: 85%;
}

.footer-center {
    padding-left: 0;
    padding-top: 2%;
    
}

.footer-center i {
    color: black;
}

.footer-center i:hover {
    cursor: pointer;
    color: darkorchid;
    transition: all 0.4s ease-out; 
}
.footer-bottom p {
    object-position: bottom;
    font-size: 75%;
    padding-bottom: -25px;
    padding-top: 50px;
    
}
.container{
    background-color: palevioletred;
    opacity: 85%;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
}
.container .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.container .content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}
.content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}
.content .left-side .details{
    margin: 14px;
    text-align: center;
}
.content .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
}
.content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
    font-size: 14px;
    color: white;
}
.container .content .right-side{
    width: 75%;
    margin-left: 75px;
}
.content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
}
.right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}
.right-side .message-box{
    min-height: 110px;
    
}
.right-side .message-box input{
      text-align: start;
}
.right-side .input-box textarea{
    padding-top: 0px;
    
}
.right-side .button{
    display: inline-block;
    margin-top: 12px;
}
.right-side .button input[type="button"]{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button input[type="button"]:hover{
    background: #5029bc;
}

@media (max-width: 1200px) {
    .container{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .container .content .right-side{
     width: 75%;
     margin-left: 55px;
    }
}
@media (max-width: 820px) {
    .container{
      margin: 40px 0;
      height: 100%;
    }
    
    .container .content{
        flex-direction: column-reverse;
    }
    .container .content .left-side{
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .container .content .left-side::before{
        display: none;
    }
    .container .content .right-side{
        width: 100%;
        margin-left: 0;
    }
}
#page{
    background-image: url(images/Background_2.png);
    height: 200vh;
    width: auto;
    background-size: cover;
    background-position: top 75px center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
 }

 .cart-overlay {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     transition: var(--mainTransition);
     background: rgb(255, 255, 255);
     z-index: 2;
     /*visibility: hidden;*/ 

 }
 .cart {
     position: fixed;
     top: 60px;
     right: 0;
     width: 100%;
     height: 100%;
     overflow: scroll;
     z-index: 3;
     background: palevioletred;
     padding: 1.5rem;
     transition: var(--mainTransition);
     /*transform: translateX(100%);*/ 

 }
 .showCart {
     transform: translateX(0);
     
 }
 .transparentBcg {
     visibility: visible;
 }
 @media screen and (min-width: 768px) {
     .cart {
         width: 30vw;
         min-width: 450px;
     }
 }
.close-cart {
    font-size: 1.7rem;
    cursor: pointer;
}
.cart h2 {
    text-transform: capitalize;
    text-align: center;
    letter-spacing: var(--mainSpacing);
    margin-bottom: 1rem;
    padding-top: 0;
    
}
.cart-content {
    
}
.cart-item {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: auto 1fr auto auto;
    grid-column-gap: 1.5rem;
    margin: 1.5rem;
    height: 100px;
}
.cart-item img {
    width: 75px;
    height: 75px;
}
.cart h4 {
    margin: 1rem;
    font-size: 0.85rem;
    text-transform: capitalize;
    letter-spacing: var(--mainSpacing);
    color: black;
    padding-top: 5px;
}
.cart h5 {
    margin: 0.5rem;
    letter-spacing: var(--mainSpacing);
}
.cart-item-description {
    padding-bottom: 5px;
    height: 100px;
    width: 200px;
    top: 0%;
}
.item-amount {
    text-align: center;
    padding: 1px;
    margin: 1px;
}
.remove-item {
    color: darkorchid;
    cursor: pointer;
}
.fa-chevron-up,
.fa-chevron-down {
    color: darkorchid;
    cursor: pointer;
}

.cart-footer {
    margin-top: 2rem;
    letter-spacing: var(--mainSpacing);
    text-align: center;
}
.cart-footer h3 {
    text-transform: capitalize;
    margin-bottom: 1rem;
}
 /* FAQ Section */
.faq-section {
    padding: 50px;
    background-color: black;
    color: white;
    text-align: center;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.262);
}

 /* Search Box Styles */
.search-box {
    padding: 10px;
    width: 60%;
    margin: 0 auto 30px auto;
    font-size: 18px;
    border-radius: 5px;
    border: 2px solid #f4f4f4;
    background-color: #333;
    color: white;
}

 /* Scrollable FAQ List */
.faq-window {
    max-height: 200px;
    width: 60%;
    overflow-y: auto;
    border: 2px solid #f4f4f4;
    border-radius: 0;
    margin: 0 auto 30px auto;
    margin-top: 20px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.faq-list {
    padding: 0;
}

 /* FAQ List Styles */
.faq-item {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    padding: 0%;
    opacity: 75%;
}

.faq-item h3 {
    padding: 15px;
    margin: 0;
    cursor: pointer;
    background-color: #960d91;
    font-size: 18px;
}

.faq-item p {
    padding: 15px;
    margin: 0;
    display: none;
    background-color: #2c2c2c;
}

.faq-item.open p {
    display: block;
}

 /* Hover effects */
.faq-item h3:hover {
    background-color: #f4a300;
}
 /* Contact Us Section */
 .contact-section {
     padding: 50px;
     color: white;
     background-image: images/Background_2.png;
     text-align: center;
 }

 .contact-section h2 {
     font-family: 'Playfair Display', serif;
     margin-bottom: 20px;
 }

 /* Form Styles */
 .contact-form {
     width: 80%;

     margin: 0 auto;
     background-color: rgba(0, 0, 0, 0.6);
     padding: 30px;
     border-radius: 10px;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     color: #f4f4f4;
     font-size: 16px;
 }

 .form-group input,
 .form-group textarea {
     width: 90%;
     padding: 15px;
     font-size: 16px;
     border: 1px solid #f4f4f4;
     border-radius: 5px;
     background-color: #333;
     color: white;
 }

 .form-group textarea {
     resize: vertical;
     height: 150px;
 }

 .form-group button {
     background-color: #960d91;
     color: white;
     border: none;
     padding: 15px;
     width: 90%;
     margin: 5%;
     font-size: 18px;
     cursor: pointer;
     border-radius: 5px;
 }

 .form-group button:hover {
     background-color: #f4a300;
 }