*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: #ffffff;
    color: rgb(0, 0, 0);
}
#header{
    width: 100%;
    height: 100vh;
    background-image: url(images/background.png);
    background-size: cover;
    background-position: center;
}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 140px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 5%;
    font-size: 30px;     
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}


/* Bed Linen Product Page */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.product-box {
    width: 250px;
    height: 220px;
    background: rgba(255, 255, 255, 0.1); /* Light transparency */
    backdrop-filter: blur(10px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    text-decoration: none; /* Removes underline */
    color: #fff; /* White text */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2)); /* Subtle gradient */
}

.product-box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.product-name {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
}

.product-description {
    font-size: 14px;
    color: #555;
}

/* Hover effect */
.product-box:hover {
    box-shadow: 0 0 20px #ff004f;
}

nav .fa-solid{
    display: none;

}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-box {
        width: 90%;
    }
    #header{
        background-image: url(images/phone-background.png);
    }
    .header-text{
        margin-top: 80%;
        font-size: 16px; 
    }
    .header-text h1{
        font-size: 20px;
    }
    nav .fa-solid{
        display: block;
        font-size: 25px;
    }
    nav ul{
        background: #ff004f;
        position: fixed;
        top: 0;
        right:-200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    .header-text{
        margin-top: -10px;
    }
}


