body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    text-align: center;
}

header {
    background: #000000;
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.hero {
    background: url('images/beddingcollection/Screenshot\ 2025-02-24\ at\ 13.26.28.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
   
}


.hero-text {
    font-size: 3rem;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInMove 1.5s forwards;
}

@keyframes fadeInMove {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection {
    padding: 3rem 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 20px;
}

.item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}


.item img:hover {
    transform: scale(1.1);
}

footer {
    background: #000000;
    color: white;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
       
}
.footer a {
    height: 5px;
    width: 5px;


}

.shop-btn {
    display: inline-block;
    background-color: #7A2E2E; /* Dark Red */
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.shop-btn:hover {
    background-color: #5A1F1F;
    transform: scale(1.05);
}

.contact-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
    text-align: left;
}

.contact-box p {
    margin: 10px 0;
    font-size: 16px;
}

.contact-box a {
    color: #7A2E2E;
    font-weight: bold;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}
