body, html {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #FCFAF1;
    padding-top: 0;
}

header {
    background-color: black;
    color: white;
    padding: 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fixed {
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
}

.logo {
    height: 80px;
}

.logo-img {
    height: 100%;
    margin-left: 1rem;
}

.header-nav {
    display: flex;
    gap: 1rem;
}

.header-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 1.4rem;
    margin: 1.9rem 0rem;
}

.header-nav a:hover {
    text-decoration: underline;
}

#login-button {
    background-color: #b01d1d;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    margin-right: 1rem;
}


#login-button:hover {
    opacity: 0.7;
}

.hero-container {
    position: relative;
    height: calc(100vh - 80px); /* Subtracting header height */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    text-align: center;
    color: rgb(255, 252, 238);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20PX;
}

.hero-text h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 2px;
}

.hero-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
    color: rgb(255, 252, 238);
    margin-bottom: 20px;
}

.shop-online {
    text-decoration: none;
    background-color: #f5f0eb; 
    color: #000000; 
    padding: 1rem 2rem; 
    border: none; 
    border-radius: 25px; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer; 
    transition: opacity 0.3s ease;
}

.shop-online:hover {
    opacity: 0.8; 
}

.shop-online {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */

footer {
    background-color: black;
    color: #CCCCCC;
    padding: 2rem 0;
    font-family: 'Spartan', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.footer-section p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: #CCCCCC;
    font-size: 1.7rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .social-icons {
        justify-content: center;
    }
}
