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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2d3748;
    background-color: #fffaf5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #f8b500 0%, #fceabb 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 55px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e53e3e;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section with Background Image */
.hero {
    position: relative;
    background-image: url('https://img.freepik.com/premium-photo/heart-made-fruits-vegetables-white-background-symbolizing-healthy-eating-concept-healthy-eating-fruits-vegetables-heart-shape-food-photography-nutrition_918839-384114.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 20px;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248,181,0,0.7) 0%, rgba(252,234,187,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(229,62,62,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229,62,62,0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 3px solid #f8b500;
    color: #f8b500;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f8b500;
    color: white;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fffaf5 0%, #fff5e6 100%);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3748;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f8b500, #e53e3e);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(248,181,0,0.3);
    border: 8px solid white;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #4a5568;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8b500 0%, #fceabb 100%);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: white;
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: white;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #f8b500;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

/* Shop Section */
.shop {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fffaf5 0%, #fff5e6 100%);
}

.shop h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3748;
    position: relative;
}

.shop h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f8b500, #e53e3e);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #718096;
    font-size: 1.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #f8b500;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.price {
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8b500 0%, #fceabb 100%);
}

.blog h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: white;
    position: relative;
}

.blog h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: white;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.blog-card .date {
    color: #f8b500;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #718096;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fffaf5 0%, #fff5e6 100%);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3748;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f8b500, #e53e3e);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f8b500;
    box-shadow: 0 0 0 3px rgba(248,181,0,0.1);
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
    padding: 3rem 20px;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Bot Protection */
#honeypot {
    position: absolute;
    left: -9999px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}
