.body{
 background-color:#FCDDD4;
position: relative;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

header .logo img {
    width: 350px;
    margin: -50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

nav a.indicator {
    font-weight: bold;
}
nav a {
    color: #051661;
    text-decoration: none;
    font-size: 1.2em;
}

.cart-icon {
    width: 24px;
    height: 24px;
}




.landing-images {
    display: flex;
    width: 100%;
    height: 60vh;
    margin-top: 100px; 
}

.landing-images img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FCDDD4; 
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em;
    background-color: #FCDDD4; 
    padding-bottom: 18em;
}
.thread-possibilities {
    text-align: center;
    padding: 3em 1em;
    background-color: #FCDDD4; 


}

.thread-possibilities h2 {
    font-size: 2.5em;
    color: #964B00;
    font-weight: bold;
    margin-bottom: 2em;
}


.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    padding: 0 1em;
}

.grid-item {
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-item p {
    font-size: 1em;
    color: #051661;
    padding: 1em 0;
    font-weight: bold;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.view-more {
    display: inline-block;
    margin-top: 2em;
    padding: .5em 32em;
    font-size: 1em;
    color: #051661;
    background-color: transparent;
    border: 2px solid #051661
}

.view-more:hover {
    background-color: #051661;
    color: #fff;
}








.footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem;
    color:#051661;
    position: absolute; 
    bottom: 0; 
    width: 100%; 
    height: 300px; 
    z-index: 100; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between;
    width: 100%; 
}

.footer-text {
    flex: 1;
    text-align: left; 
    font-size: 16pt;
    
}

.footer-logo {
    flex: 0 0 auto; 
    
}

.footer-logo {
    width: 350px; 
    height: auto; 
}