/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F5E9D4;
}

/* Header */
header {
    background: #4A7043;
    color: white;
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

header h1 {
    font-family: 'Be Vietnam Pro', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cart-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.cart-icon img {
    vertical-align: middle;
}

#cart-count {
    background: #D4A017;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Be Vietnam Pro', serif;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #D4A017;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') center/cover no-repeat;
    padding: 4rem 2rem;
    text-align: center;
    color: #2C3E50;
}

.hero h2 {
    font-family: 'Be Vietnam Pro', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #D4A017;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Be Vietnam Pro', serif;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b38b12;
}

/* Products Section */
.collection {
    padding: 3rem 2rem;
}

.collection h2 {
    font-family: 'Be Vietnam Pro', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-item h3 {
    font-family: 'Be Vietnam Pro', serif;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.collection-item p {
    padding: 0 1rem;
    font-size: 1rem;
    color: #666;
}

.collection-item .cta-button {
    display: block;
    margin: 1rem auto;
    width: fit-content;
}

/* Newsletter Section */
#newsletter {
    background: #4A7043;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

#newsletter h2 {
    font-family: 'Be Vietnam Pro', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

#newsletter input {
    padding: 0.8rem;
    width: 100%;
    max-width: 300px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

#newsletter button {
    padding: 0.8rem 1.5rem;
    background: #D4A017;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Be Vietnam Pro', serif;
    transition: background 0.3s;
}

#newsletter button:hover {
    background: #b38b12;
}

/* Contact Section */
#contact {
    padding: 3rem 2rem;
}

#contact h2 {
    font-family: 'Be Vietnam Pro', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    margin: 0 1rem;
    color: #4A7043;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #D4A017;
}

/* Footer */
footer {
    background: #2C3E50;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul li {
        margin: 0 0.8rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }
}