* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #2d8659;
    --green-light: #4CAF50;
    --green-dark: #1b5e3f;
    --orange-primary: #ff6b35;
    --orange-light: #ff8c61;
    --orange-dark: #d95427;
    --white: #ffffff;
    --cream: #fef9f3;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --text-dark: #2c2c2c;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
}

.nav-menu li {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--orange-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--orange-light) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--orange-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-vegetables {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.vegetable-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.veg-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.veg-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.veg-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.veg-4 {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

.veg-5 {
    bottom: 40%;
    right: 10%;
    animation-delay: 0.5s;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: var(--white);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-color: var(--green-light);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    color: var(--green-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

/* Gallery Preview */
.gallery-preview {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--white), var(--gray-light));
}

.gallery-preview h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 134, 89, 0.9), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--orange-primary) 100%);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Calendar Section */
.calendar-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.calendar-container {
    margin-bottom: 60px;
}

.calendar-container h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.month-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.month-btn {
    padding: 10px 20px;
    background-color: var(--gray-light);
    border: 2px solid var(--gray-medium);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.month-btn:hover,
.month-btn.active {
    background-color: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

.seasonal-vegetables {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    min-height: 200px;
}

.vegetable-item {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--orange-light) 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.vegetable-item-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.vegetables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vegetable-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gray-medium);
    text-align: center;
    transition: all 0.3s ease;
}

.vegetable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
    border-color: var(--green-primary);
}

.vegetable-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vegetable-card h3 {
    color: var(--green-dark);
    margin-bottom: 15px;
}

.season-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--orange-primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, var(--gray-light), var(--white));
}

.benefits-section h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 50px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--green-primary);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.benefit-item h4 {
    color: var(--orange-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Recipes Section */
.recipes-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.season-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--gray-light);
    border: 2px solid var(--gray-medium);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.recipe-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.recipe-content {
    padding: 25px;
}

.recipe-season {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--green-primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.recipe-card h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.recipe-details {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.recipe-toggle {
    padding: 10px 20px;
    background-color: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.recipe-toggle:hover {
    background-color: var(--orange-dark);
}

.recipe-full {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-medium);
}

.recipe-full.active {
    display: block;
}

.recipe-full h4 {
    color: var(--green-dark);
    margin: 15px 0 10px;
}

.recipe-full ul,
.recipe-full ol {
    margin-left: 20px;
    line-height: 1.8;
}

/* Nutrition Section */
.nutrition-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.nutrition-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.nutrition-intro h2 {
    color: var(--green-dark);
    margin-bottom: 20px;
    font-size: 2rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.nutrition-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.nutrition-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 25px var(--shadow);
}

.nutrition-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.nutrition-card h3 {
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.nutrition-details p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.health-benefits {
    margin-top: 60px;
}

.health-benefits h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--orange-primary);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.benefit-box h4 {
    color: var(--green-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tips-section {
    margin-top: 60px;
}

.tips-section h2 {
    color: var(--green-dark);
    margin-bottom: 30px;
    font-size: 2rem;
}

.tips-list {
    list-style: none;
    max-width: 800px;
}

.tips-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--gray-light);
    border-left: 4px solid var(--green-primary);
    border-radius: 5px;
    position: relative;
    padding-left: 50px;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: var(--green-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Tips Page */
.tips-section-main {
    padding: 60px 20px;
    background-color: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tip-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gray-medium);
    position: relative;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 25px var(--shadow);
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--green-primary), var(--orange-primary));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px var(--shadow);
}

.tip-card h3 {
    color: var(--green-dark);
    margin-top: 20px;
    margin-bottom: 15px;
}

.guide-section {
    margin-top: 60px;
}

.guide-section h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.guide-table {
    display: grid;
    gap: 25px;
}

.guide-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guide-item {
    background-color: var(--gray-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--orange-primary);
}

.guide-item h4 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

/* About Page */
.about-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.about-text h2 {
    color: var(--green-dark);
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.about-list {
    margin-left: 20px;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
}

.values-section {
    margin-top: 60px;
}

.values-section h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--orange-light) 100%);
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 15px;
}

.join-section h2 {
    color: var(--green-dark);
    margin-bottom: 20px;
}

.join-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-wrapper-simple {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--green-dark);
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-box {
    background-color: var(--gray-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--green-primary);
}

.info-box h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
}

.info-box a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: var(--orange-primary);
    text-decoration: underline;
}

.contact-form-wrapper h2 {
    color: var(--green-dark);
    margin-bottom: 25px;
}

.contact-form {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    line-height: 1.6;
}

.checkbox-group a {
    color: var(--green-primary);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: var(--green-light);
    color: var(--white);
    display: block;
}

.form-message.error {
    background-color: var(--orange-dark);
    color: var(--white);
    display: block;
}

/* Privacy Page */
.privacy-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2 {
    color: var(--green-dark);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-form-section {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--gray-light);
    border-radius: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section h2 {
    color: var(--green-dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-form-section > p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-form-section .contact-form {
    background-color: transparent;
    padding: 0;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: var(--white);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
/* Tablet and Small Laptop */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        gap: 1rem;
        padding: 1rem 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.7rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 5px 3px;
    }
}

/* Medium Laptops */
@media (max-width: 1366px) and (min-width: 1025px) {
    .navbar {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--green-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        box-shadow: 0 5px 15px var(--shadow);
        max-height: 0;
        overflow: hidden;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper-simple {
        max-width: 100%;
    }

    .contact-form-section {
        padding: 25px;
    }

    .month-selector {
        grid-template-columns: repeat(3, 1fr);
    }

    .features .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
    }

    .vegetables-grid {
        grid-template-columns: 1fr;
    }
}

