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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header Styles */
.header {
    background-color: #2d5016;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-brand i {
    color: #8fbc8f;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8fbc8f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8fbc8f;
    transition: width 0.3s ease;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #8fbc8f;
    color: #2d5016;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #7aa67a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Section Styles */
.section {
    padding: 4rem 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header i {
    color: #2d5016;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

/* Company Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #2d5016;
}

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

.info-card i {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Featured Recipes */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #4a7c59;
}

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

.recipe-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a7c59, #2d5016);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.recipe-icon i {
    color: white;
    font-size: 2rem;
}

.recipe-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.recipe-link {
    display: inline-block;
    color: #4a7c59;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #4a7c59;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.recipe-link:hover {
    background-color: #4a7c59;
    color: white;
}

/* Quick Recipes */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

.quick-card:hover {
    transform: translateY(-3px);
    border-color: #4a7c59;
}

.quick-card i {
    color: #4a7c59;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-card h4 {
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.time {
    background-color: #8fbc8f;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-item i {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: #2d5016;
    margin-bottom: 1rem;
}

/* Newsletter - Compact */
.newsletter-compact {
    background: linear-gradient(135deg, #8fbc8f 0%, #4a7c59 100%);
    color: white;
    padding: 2rem 0;
}

.newsletter-compact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text i {
    font-size: 1.5rem;
    color: white;
}

.newsletter-text span {
    font-weight: bold;
    font-size: 1.1rem;
}

.newsletter-text small {
    color: #e8f5e8;
    font-size: 0.9rem;
}

.newsletter-compact-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.newsletter-compact-form input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    min-width: 200px;
}

.newsletter-compact-form button {
    background-color: white;
    color: #2d5016;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-compact-form button:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #8fbc8f;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    margin: 0 2px;
}

.reviewer {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Contact Preview */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
}

.contact-item i {
    color: #2d5016;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-button-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2d5016;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 1rem auto 0;
    display: block;
    width: fit-content;
    font-size: 0.9rem;
}

.contact-button-compact:hover {
    background-color: #4a7c59;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-brand i {
    color: #8fbc8f;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8fbc8f;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #8fbc8f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5016;
    color: white;
    padding: 1rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content i {
    color: #8fbc8f;
    font-size: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8fbc8f;
    color: #2d5016;
}

.btn-accept:hover {
    background-color: #7aa67a;
}

.btn-necessary {
    background-color: #666;
    color: white;
}

.btn-necessary:hover {
    background-color: #555;
}

.btn-custom {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-custom:hover {
    background-color: white;
    color: #2d5016;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .newsletter-compact-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .newsletter-compact-form input {
        min-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
}