* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif,Arial,;
}

.hero{
    background-image: url('/assets/lights.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}


body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    margin-right: 10px;
}

.company-name {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.main-content {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    height: calc(100vh - 90px);
    position: relative;
}

.tagline {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.tagline h1 {
    font-size: 72px;
    color: #4A5659;
    text-align: right;
    line-height: 1.2;
    font-weight: normal;
}

.shop-button {
    background-color: #0D5D41;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 30px;
    display: inline-block;
}

/*blahblahblahblah*/

.product-showcase {
    padding: 5rem 2rem;
    position: relative;
}

.product-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #333;
    color: white;
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 3px;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    color: #777;
}

.product-card.large {
    flex: 1;
}

.product-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 7rem 2rem;
    position: relative;
    background-color: #f5f2ed;
}

.feature {
    text-align: center;
    max-width: 300px;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature p {
    font-size: 0.9rem;
    color: #555;
}

/* About Section */
.about {
    display: flex;
    background-color: #184d47;
    color: white;
    padding: 4rem 2rem;
    position: relative;
}

.about-content {
    flex: 1;
    padding-right: 2rem;
}

.about h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
}

.about p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-image {
    flex: 0.3;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Materials Section */
.materials {
    padding: 9rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.materials h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.materials p {
    color: #555;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #184d47;
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: 5px;
    padding: 1.5rem;
    width: 30%;
}

.rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.testimonial-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: #777;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #f5f2ed;
    padding: 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

.social-icons img {
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .product-row {
        flex-direction: column;
    }
    
    .features,
    .about,
    .testimonials {
        flex-direction: column;
        align-items: center;
    }
    
    .feature,
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .about-content,
    .about-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
}


