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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header Styles */
.hero-header {
    position: relative;
    background-image: url('banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.header-content {
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-height: 140px;
    max-width: 140px;
    border-radius: 12px;
    background-color: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
    font-weight: bold;
}

.tagline {
    font-size: 1.3rem;
    color: #4a8f3d;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #4a8f3d;
}

.hero h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Calendar Section */
.calendar-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.calendar-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.calendar-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.calendar-event {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.calendar-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.event-date {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a8f3d 100%);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44, 95, 45, 0.3);
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h3 {
    color: #2c5f2d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.event-type {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.event-type.chickens {
    background-color: #fff3cd;
    color: #856404;
}

.event-type.quail {
    background-color: #d1ecf1;
    color: #0c5460;
}

.calendar-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    color: #2c5f2d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-box > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4a8f3d;
}

.newsletter-form button {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a8f3d 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Birds Section */
.birds-section {
    padding: 4rem 0;
    background-color: white;
}

.birds-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

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

.bird-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.bird-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.bird-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.bird-card h3 {
    color: #2c5f2d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bird-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #2c5f2d;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        padding: 2.5rem 0;
        min-height: 250px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        max-height: 110px;
        max-width: 110px;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .newsletter-box {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-box h2 {
        font-size: 1.5rem;
    }
    
    .birds-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-event {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin: 0 auto;
    }
    
    .event-type {
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
