/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #ffcdd2 0%, #ffebee 100%);
    color: #c62828;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #e53935, #d32f2f);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2rem;
    font-style: italic;
}

/* Navigation Styles */
nav {
    background: #c62828;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 20px;
    transition: background 0.3s;
    display: inline-block;
}

container:hover{
  background: #b71c1c;
}

nav a:hover {
    background: #b71c1c;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.hero h2 {
    color: #d32f2f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.strawberry-emoji {
    font-size: 5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Card Styles */
.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card h3 {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card p {
    color: #666;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Button Styles */
.button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.button:hover {
    background: #b71c1c;
}

/* Decorative Seeds */
.seeds {
    position: relative;
}

.seeds::before,
.seeds::after {
    content: '🌱';
    position: absolute;
    opacity: 0.3;
    font-size: 2rem;
}

.seeds::before {
    top: -10px;
    left: -20px;
}

.seeds::after {
    bottom: -10px;
    right: -20px;
}

/* Footer Styles */
footer {
    background: #c62828;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    nav a {
        display: block;
        margin: 0.5rem 0;
    }
}