/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

a {
    color: #e44d26; /* Example brand color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and Navigation */
header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6e008d;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #f0f0f0;
    text-decoration: none;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-image.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #e44d26;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d1421f;
    text-decoration: none;
}

/* Featured Baskets Section */
#featured-baskets {
    padding: 3rem 0;
    text-align: center;
}

#featured-baskets h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.baskets-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.basket {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: left;
}

.basket img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.basket h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.basket .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e44d26;
    margin-bottom: 1rem;
}

.add-to-cart {
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #367c39;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative; /* Needed for absolute positioning of logo */
    bottom: 0;
    width: 100%;
    display: flex; /* To align text and logo */
    justify-content: center; /* Center the text by default */
    align-items: center; /* Vertically align items */
}

footer .logo-footer {
    position: absolute;
    left: 750px; /* Adjust as needed for spacing */
    bottom: 0px; /* Adjust as needed for spacing from the bottom */
}

footer .logo-footer img {
    height: 50px; /* Adjust as needed to fit footer height */
    width: auto;
    /* Optionally add width: auto; to maintain aspect ratio */
}

footer p {
    margin: 0; /* Remove default margin for better alignment */
}


/* About Section */
#about {
    padding: 3rem 0;
    text-align: center;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.about-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Contact Section */
#contact {
    padding: 3rem 0;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button[type="submit"] {
    background-color: #e44d26;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #d1421f;
}

/* Shop Section */
#shop {
    padding: 3rem 0;
    text-align: center;
    background-image: "images/background4.jpg";
}

#shop h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .baskets-container {
        flex-direction: column;
        align-items: center;
    }

    .basket {
        width: 80%;
    }

    .about-content img {
        max-width: 100%;
    }
}