* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f7f3;
    color: #8a7f6d;
    line-height: 1.6;
}

.navbar {
    background-color: #f9f7f3;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7baa7e;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #8a7f6d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #7baa7e;
}

.season-gradient {
    height: 4px;
    background: linear-gradient(to right, 
        #7baa7e 0%, 
        #7baa7e 25%, 
        #e09e50 25%, 
        #e09e50 50%, 
        #e09e50 50%, 
        #e09e50 75%, 
        #b8c4b8 75%, 
        #b8c4b8 100%);
    margin-top: 1rem;
}

.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    color: #7baa7e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8a7f6d;
}

.calendar-wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
}

.calendar-wheel {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8c4b8 0%, #7baa7e 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.month-sectors {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.month-sector {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background-color: rgba(123, 170, 126, 0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
}

.month-sector:hover {
    background-color: rgba(224, 158, 80, 0.5);
    z-index: 10;
    transform: scale(1.05);
}

.month-sector.active {
    background-color: rgba(224, 158, 80, 0.7);
    z-index: 10;
}

.month-sector span {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.month-sector:nth-child(1) { transform: rotate(0deg); }
.month-sector:nth-child(2) { transform: rotate(120deg); }
.month-sector:nth-child(3) { transform: rotate(240deg); }

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: #f9f7f3;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 100;
    overflow: hidden;
}

.center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.center-text {
    position: absolute;
    background: rgba(249, 247, 243, 0.9);
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
}

.center-text h3 {
    color: #7baa7e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.center-text p {
    color: #8a7f6d;
    font-size: 0.9rem;
}

.filter-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.filter-section h2 {
    color: #7baa7e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    color: #8a7f6d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.filter-group select {
    padding: 0.75rem;
    border: 2px solid #b8c4b8;
    border-radius: 8px;
    background-color: #f9f7f3;
    color: #8a7f6d;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-group select:hover {
    border-color: #7baa7e;
}

.filter-group select:focus {
    outline: none;
    border-color: #7baa7e;
}

.monthly-cards {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.month-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #7baa7e;
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.month-card[data-season="spring"] {
    border-left-color: #7baa7e;
    background: linear-gradient(to right, rgba(123, 170, 126, 0.05) 0%, #fff 10%);
}

.month-card[data-season="summer"] {
    border-left-color: #e09e50;
    background: linear-gradient(to right, rgba(224, 158, 80, 0.05) 0%, #fff 10%);
}

.month-card[data-season="autumn"] {
    border-left-color: #e09e50;
    background: linear-gradient(to right, rgba(224, 158, 80, 0.05) 0%, #fff 10%);
}

.month-card[data-season="winter"] {
    border-left-color: #b8c4b8;
    background: linear-gradient(to right, rgba(184, 196, 184, 0.05) 0%, #fff 10%);
}

.month-card.highlight {
    border-left-width: 8px;
    box-shadow: 0 10px 40px rgba(123, 170, 126, 0.3);
}

.card-header h2 {
    color: #7baa7e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.climate {
    color: #8a7f6d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.card-content {
    display: grid;
    gap: 2rem;
}

.vegetable-group h3 {
    color: #8a7f6d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.vegetable-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.vegetable-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #f9f7f3;
    border-radius: 8px;
    border: 2px solid #b8c4b8;
    transition: all 0.3s;
    cursor: pointer;
}

.vegetable-item:hover {
    background-color: #7baa7e;
    color: #fff;
    border-color: #7baa7e;
    transform: scale(1.05);
}

.vegetable-item.highlight {
    background-color: #e09e50;
    color: #fff;
    border-color: #e09e50;
    box-shadow: 0 5px 15px rgba(224, 158, 80, 0.3);
}

.vegetable-item.hidden {
    display: none;
}

.emoji {
    font-size: 1.5rem;
}

.farming-tips {
    background-color: #f9f7f3;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8a7f6d;
}

.farming-tips h4 {
    color: #7baa7e;
    margin-bottom: 1rem;
}

.farming-tips p {
    color: #8a7f6d;
    margin-bottom: 0.5rem;
}

.farming-tips strong {
    color: #8a7f6d;
}

.tips-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.tips-section h2 {
    color: #7baa7e;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-card h3 {
    color: #7baa7e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-content {
    color: #8a7f6d;
}

.tip-content p {
    margin-bottom: 0.5rem;
}

.tip-content strong {
    color: #8a7f6d;
}

.tools-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.tools-section h2 {
    color: #7baa7e;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tool-card h3 {
    color: #7baa7e;
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.tool-card p {
    color: #8a7f6d;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.community-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.community-section h2 {
    color: #7baa7e;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.community-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.community-content > p {
    color: #8a7f6d;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #7baa7e;
    font-size: 1.2rem;
}

.resources-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.resources-section h2 {
    color: #7baa7e;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.resources-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.resource-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #b8c4b8;
}

.resource-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.resource-item h3 {
    color: #7baa7e;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.resource-item p {
    color: #8a7f6d;
    font-size: 1.1rem;
}

.print-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #7baa7e 0%, #e09e50 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(123, 170, 126, 0.3);
}

.print-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 170, 126, 0.4);
}

.print-button:active {
    transform: translateY(-1px);
}

.button-icon {
    font-size: 1.5rem;
    animation: waterDrop 2s infinite;
}

@keyframes waterDrop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer {
    background-color: #8a7f6d;
    color: #f9f7f3;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f9f7f3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f9f7f3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7baa7e;
}

.footer-section p {
    color: #f9f7f3;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 247, 243, 0.3);
}

.footer-bottom p {
    color: #f9f7f3;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .calendar-wheel {
        width: 350px;
        height: 350px;
    }

    .wheel-center {
        width: 150px;
        height: 150px;
    }

    .filter-container {
        grid-template-columns: 1fr;
    }

    .month-card {
        padding: 1.5rem;
    }

    .tips-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

