/* Hero section */
#hero {
    position: relative;
    height: 100vh; /* Changed from 200vh to 100vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; /* Add padding to account for the header */
    width: 100%;
}

#hero img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;  /* Changed from 80% to auto */
    height: 100%;  /* Changed from 80% to 100% */
    object-fit: cover;
    z-index: -1;
    transform: translate(-50%, -50%);  /* Center the image */
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Featured products section */
#featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.product {
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Campaign section */
#campaign {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#campaign video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#campaign h2 {
    font-size: 2.5em;
    text-transform: uppercase;
}



.brand-name h1 {
    text-align: center;
    letter-spacing: 3px;
    font-size: 3rem;
}

#hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    height: 80px; /* Add a fixed height to the header */
}

header.transparent {
    background-color: transparent;
}

header.solid {
    background-color: #fff; /* Or your preferred solid color */
}

.content-wrapper {
    padding-top: 150px; /* Adjust this value based on your header's height */
}