/* Body */
body{
    margin: 0;
    background-color: #F1FAEE;
}
/* Fonts */
h1{
    font-family: "Lobster", sans-serif;
}
h2,h3,h4,h5,h6,a{
    font-family: "Luckiest Guy", sans-serif;
}
p,li{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    text-decoration: none;
}
/* Header */
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 30vh;
    background-color: #ce073e;
}
/* Logo */
header div img{
    display: block;
    width: auto;
    height: 150px;
    margin-bottom: 10px;
}
/* Nav */
header nav {
    display: flex;
    justify-content: center;    /* Center navigation items horizontally */
    width: 100%;
    background-color: #e285ae;     /* Set a solid background color for the nav */
    padding: 10px 0;            /* Space around the nav links */
    color: #fffafb;
}
header nav menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
header nav menu li {
    margin: 0 150px;             /* Space between nav */
}
header nav menu li a {
    text-decoration: none;
    color: #fffafb;               /* Set the link text color */
    font-size: 20px;
}
/* Home */
#home{
    position: relative;
    height: 100vh;
    width: 100%; /* Full width */
}
#home img{
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: auto;
    z-index: -1; /* Keeps the image behind the text */
    clip-path: circle(50% at 50% 50%);
}
#home .content {
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ensures the content is above the background image */
    color: #ce073e;
    text-align: left;
}
#home .content h1 {
    font-size: 60px;
    margin-bottom: 10px;
}
#home .content p {
    font-size: 20px;
    margin-bottom: 20px;
}
#home .content .button{
    display: inline-block;
    padding: 10px 20px;
    background-color: #ce073e;
    color: #fffafb;
    text-decoration: none;
    font-size: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
#home .content .button:hover {
    background-color: #ff5252; /* Hover background color */
    transform: scale(1.1); /* Slight zoom effect when hover */
}
/* New products */
#newArrivals{
    text-align: center;
    margin-top: -150px;
    padding: 50px 10px;
    background-color: #e976af;
}
#newArrivals h2 {
    font-size: 25px;
    margin-top: -10px;
    margin-bottom: 10px;
    color: #fffafb;
}
#newArrivals p {
    font-size: 20px;
    color: #fffafb;
    margin-bottom: 30px;
}
/* New Products Container */
#newArrivals .new-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px); /* Responsive grid */
    gap: 30px;
    justify-items: center;
}
/* Product Card */
#newArrivals .new {
    background-color: #FFF765;
    border-radius: 2px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
/* Product Image */
#newArrivals .new img {
    width: 150px;
    height: 150px;
    object-fit: fill;
    margin-bottom: 10px; /* Space below the image */
}
/* Product Hover Effect */
#newArrivals .new:hover {
    transform: translateY(-30px); /* Lift the card */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/* Product Title */
#newArrivals .new h3 {
    font-size: 20px;
    color: #ce073e;
    margin-bottom: 15px;
}
/* Button*/
#newArrivals .new .button2 {
    padding: 10px 20px;
    background-color: #ce073e;
    color: #fffafb;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Button Hover Effect */
#newArrivals .new .button2:hover {
    background-color: #ff5252; /* Hover background color */
    box-shadow: 0 0 15px rgb(255, 169, 82); /* Glow when hover */
}
#about{
    padding: 50px 20px;
    color: #fa7700;
    text-align: center;
}
.about-container {
    max-width: 750px;
    margin: -15px auto;
    line-height: 2;
}
#about h2{
    font-size: 35px;
    margin-bottom: 15px;
}

#products {
    padding: 50px 20px;
    background-color: #fb608d;
    text-align: center;
    position: relative;
}
.products-container {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    gap: 20px;
}
#products h2 {
    font-size: 50px;
    margin-top: 0;
    margin-left: -25px;
    padding-bottom: 20px;
    color: #fffafb;
}
.colour1{
    background-color: #ffeb6b;
}
.colour2{
    background-color: #51ebff;
}
.colour3{
    background-color: #a1f1a3;
}
.colour4{
    background-color: #f888be;
}
/* Product cards */
.product-item {
    width: 400px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: #fffafb;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Image inside the background card */
.product-item img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}
/* Heading */
.product-item h3 {
    font-size: 20px;
    margin: 10px 0;
}
/* Links */
.product-link {
    display: inline-block;
    padding: 8px 10px;
    font-size: 14px;
    color: #fffafb;
    background-color: rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}
.product-link:hover {
    background-color: rgba(0, 0, 0, 0.4);
}
/* Hover effect for product card */
.product-item:hover {
    transform: scale(1.25);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#contact{
    background-color: #ce073e;
    color: #fffafb;
    padding: 40px 20px;
    text-align: center;
}
footer img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    max-width: 1300px;
    margin: 0 auto;
}
/* Contact Form Section */
.contactForm form input,
.contactForm form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 2px;
    font-family: "Poppins", sans-serif;
}
.contactForm form textarea {
    height: 80px;
    font-size: 15px;
    margin-top: -18px;
    resize: none;
    background-color: #fffafb;
}
.contactForm form input[type="submit"] {
    margin-top: -50px;
    background-color: #edcf34;
    color: white;
    font-size: 13px;
    width: 100px;
    border: none;
    border-radius: 2px;
    padding: 5px 10px;
    cursor: pointer;
}
.contactForm form input[type="submit"]:hover {
    background-color: #d4881c;
}
/* Footer Info Section */
.footer-info {
    min-width: 300px;
    padding: 50px;
}

.footer-info h4{
    font-size: 25px;
    margin-top: -5px;
    margin-bottom: 50px;
}

.footer-info p{
    display: flex;
    font-size: 15px;
    margin: 10px 0;
    justify-content: left;
}
/* Responsive Designs */
/* Laptop 1024 */
@media (max-width: 1024px)  {
    header{
        width: 108%;
        height: 30vh;
    }
    header nav{
        width: 100%;
        padding: 11px 0;
    }
    header nav menu li{
        margin: 0 50px;
    }
    #home img{
        width: 90%;
        height: auto;
    }
    #home .content{
        top: 30%;
        left: 50%;
    }
    #home .content h1{
        font-size: 40px;
    }
    #home .content p{
        font-size: 15px;
    }
    #home .content .button{
        font-size: 15px;
    }
    #newArrivals{
        width: 106%;
    }
    #newArrivals p{
        font-size: 15px;
    }
    #newArrivals .new-products{
        gap: 90px;
    }
    #newArrivals .new h3{
        font-size: 15px;
    }
    #newArrivals .new .button2{
        font-size: 10px;
    }
    #about{
        padding: 15px 20px;
        margin-left: 130px;
        margin-bottom: 20px;
    }
    #about h2{
        font-size: 13px;
    }
    #about p{
        font-size: 11px;
    }
    #products{
        padding: 20px 50px;
        width: 99%;
    }
    .products-container{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    #products h2{
        font-size: 35px;
    }
    footer{
        width: 105%;
    }
}

/* Tablet */
@media (max-width: 768px)  {
    header{
        width: 120%;
        height: 30vh;
    }
    header nav{
        width: 100%;
        padding: 11px 0;
    }
    header nav menu li{
        margin: 0 50px;
    }
    #home img{
        width: 90%;
        height: auto;
    }
    #home .content{
        top: 30%;
        left: 50%;
    }
    #home .content h1{
        font-size: 40px;
    }
    #home .content p{
        font-size: 15px;
    }
    #home .content .button{
        font-size: 15px;
    }
    #newArrivals{
        width: 117%;
    }
    #newArrivals p{
        font-size: 15px;
    }
    #newArrivals .new-products{
        gap: 90px;
    }
    #newArrivals .new h3{
        font-size: 15px;
    }
    #newArrivals .new .button2{
        font-size: 10px;
    }
    #about{
        padding: 15px 20px;
        margin-left: 130px;
        margin-bottom: 20px;
    }
    #about h2{
        font-size: 13px;
    }
    #about p{
        font-size: 11px;
    }
    #products{
        padding: 20px 50px;
        width: 106.5%;
    }
    .products-container{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    #products h2{
        font-size: 35px;
    }
    footer{
        width: 114.5%;
    }
}

/* Mobile Large */
@media (max-width: 608px) and (min-width: 425px)  {
    header{
        width: 135%;
        height: 20vh;
    }
    header div img{
        width: 100px;
        height: auto;
    }
    header nav{
        width: 100%;
        padding: 1px 0;
    }
    header nav menu li{
        margin: 0 25px;
    }
    #home img{
        left: 25%;
        width: 90%;
        height: auto;
    }
    #home .content{
        top: 130px;
        left: 150px;
        text-align: left;
    }
    #home .content h1{
        font-size: 25px;
    }
    #home .content p{
        font-size: 11px;
    }
    #home .content .button{
        font-size: 10px;
    }
    #newArrivals{
        margin-top: -345px;
        width: 130%;
    }
    #newArrivals .new-products{
        margin-left: 100px;
        margin-bottom: 20px;
    }
    #newArrivals p{
        font-size: 11px;
    }
    #newArrivals .new h3{
        font-size: 11px;
    }
    #newArrivals .new .button2{
        font-size: 8px;
    }
    #about{
        padding: 20px 20px;
        margin-left: 140px;
        margin-bottom: 20px;
    }
    #about h2{
        font-size: 16px;
    }
    #about p{
        font-size: 12px;
    }
    #products{
        padding: 20px 50px;
        position: relative;
        text-align: center;
    }
    .product-item{
        width: 300px;
        height: 200px;
    }
    .products-container{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    #products h2{
        font-size: 25px;
    }
    .product-item h3{
        font-size: 15px;
    }
    footer img{
        width: 50px;
        height: auto;
        position: absolute;
    }
    footer{
        width: 126%;
        height: 20vh;
        margin-top: -30px;
        margin-bottom: 0;
    }
    .contactForm form input, .contactForm form textarea{
        margin-top: -500px;
        margin-left: 100px;
        width: 200px;
        height: 5px;
        font-size: 11px;
        margin-bottom: 0;
    }
    .contactForm form input[type="submit"] {
        margin-top: -50px;
        font-size: 11px;
        width: 50px;
        height: auto;
        border-radius: 2px;
    }
    .footer-info{
        min-width: 100px;
        padding: 0;
    }
    .footer-info h4{
        font-size: 15px;
    }
    .footer-info p{
        font-size: 11px;
    }
}

/* Mobile Medium */
@media (max-width: 608px) and (min-width: 375px)  {
    header{
        width: 140%;
        height: 19vh;
    }
    header div img{
        width: 80px;
        height: auto;
    }
    header nav{
        width: 100%;
        padding: 0;
    }
    header nav menu li{
        margin: 0 20px;
    }
    #home img{
        left: 30%;
        width: 110%;
        height: auto;
    }
    #home .content{
        top: 129px;
        left: 150px;
        text-align: left;
    }
    #home .content h1{
        font-size: 24px;
    }
    #home .content p{
        font-size: 10px;
    }
    #home .content .button{
        font-size: 9px;
    }
    #newArrivals{
        margin-top: -345px;
        width: 135%;
    }
    #newArrivals .new-products{
        margin-left: 100px;
        margin-bottom: 19px;
    }
    #newArrivals p{
        font-size: 10px;
    }
    #newArrivals .new h3{
        font-size: 10px;
    }
    #newArrivals .new .button2{
        font-size: 8px;
    }
    #about{
        padding: 20px 20px;
        margin-left: 140px;
        margin-bottom: 19px;
    }
    #about h2{
        font-size: 15px;
    }
    #about p{
        font-size: 11px;
    }
    #products{
        padding: 20px 49px;
        width: 112%;
    }
    .product-item{
        width: 295px;
        height: 200px;
    }
    .products-container{
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    #products h2{
        font-size: 22px;
    }
    .product-item h3{
        font-size: 14px;
    }
    footer img{
        width: 49px;
        height: auto;
        position: absolute;
    }
    footer{
        width: 127.5%;
        height: 20vh;
        margin-top: -30px;
        margin-bottom: 0;
    }
    .contactForm form input, .contactForm form textarea{
        margin-top: -500px;
        margin-left: 100px;
        width: 200px;
        height: 4px;
        font-size: 11px;
        margin-bottom: 0;
    }
    .contactForm form input[type="submit"] {
        margin-top: -50px;
        font-size: 11px;
        width: 50px;
        height: auto;
        border-radius: 2px;
    }
    .footer-info{
        min-width: 100px;
        padding: 0;
    }
    .footer-info h4{
        font-size: 15px;
    }
    .footer-info p{
        font-size: 11px;
    }
}

/* Mobile Small */
@media (max-width: 608px) and (min-width: 320px)  {
    header{
        width: 150%;
        height: 19vh;
    }
    header div img{
        width: 80px;
        height: auto;
    }
    header nav{
        width: 100%;
        padding: 0;
    }
    header nav menu li{
        margin: 0 19px;
    }
    #home img{
        left: 30%;
        width: 115%;
        height: auto;
    }
    #home .content{
        top: 130px;
        left: 150px;
        text-align: left;
    }
    #home .content h1{
        font-size: 22px;
    }
    #home .content p{
        font-size: 9px;
    }
    #home .content .button{
        font-size: 8px;
    }
    #newArrivals{
        margin-top: -355px;
        width: 143%;
    }
    #newArrivals .new-products{
        margin-left: 60px;
        margin-bottom: 15px;
        gap: 10px;
    }
    #newArrivals p{
        font-size: 9px;
    }
    #newArrivals .new h3{
        font-size: 9px;
    }
    #newArrivals .new .button2{
        font-size: 7px;
    }
    #about{
        padding: 20px 20px;
        margin-left: 145px;
        margin-bottom: 15px;
    }
    #about h2{
        font-size: 14px;
    }
    #about p{
        font-size: 10px;
    }
    #products{
        padding: 20px 49px;
        width: 120%;
    }
    .product-item{
        width: 294px;
        height: 200px;
    }
    .products-container{
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
    }
    #products h2{
        font-size: 21px;
    }
    .product-item h3{
        font-size: 13px;
    }
    footer img{
        width: 48px;
        height: auto;
        position: absolute;
    }
    footer{
        width: 138%;
        height: 20vh;
        margin-top: -30px;
        margin-bottom: 0;
    }
    .contactForm form input, .contactForm form textarea{
        margin-top: -500px;
        margin-left: 100px;
        width: 200px;
        height: 4px;
        font-size: 10px;
        margin-bottom: 0;
    }
    .contactForm form input[type="submit"] {
        margin-top: -50px;
        font-size: 11px;
        width: 50px;
        height: auto;
        border-radius: 2px;
    }
    .footer-info{
        min-width: 100px;
        padding: 0;
    }
    .footer-info h4{
        font-size: 12px;
    }
    .footer-info p{
        font-size: 9px;
    }
}