/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and font styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #0b3d02;
}

header {
    background-color: #0b3d02;
    color: white;
    padding: 1rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo img {
    width: 100px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #0b3d02, #ffffff);
    color: black; /* Ensure readability */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #f39c12;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* shop */
.shop {
    background: linear-gradient(to bottom, #ffffff, #0b3d02);
    color: black; /* Ensure readability */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.shop h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shop p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
#about {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Portfolio Section */
#portfolio {
    padding: 3rem 2rem;
}

#portfolio h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery .item img {
    width: 100%;
    border-radius: 10px;
}

/* Contact Section */
#contact {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact form label {
    margin-bottom: 0.5rem;
}

#contact form input,
#contact form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact form button {
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer ul li {
    display: inline;
}

footer ul li a {
    color: white;
    text-decoration: none;
}
