/* === Theme 1: Green / White === */

/* Reset & base styles */
* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; line-height: 1.6; background: #f5f5f5; }

/* Header */
header {
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    color: white;
    padding: 30px 20px;
    text-align: center;
}
header h1 { font-size: 2.2rem; margin-bottom: 10px; }
header p { font-size: 1.1rem; opacity: 0.9; }

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    background: #1b5e20;
    flex-wrap: wrap;
}
nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
nav a:hover { background: #4CAF50; color: white; }

/* Sections */
section { padding: 60px 20px; max-width: 1200px; margin: auto; }
section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2E7D32;
}

/* Products grid */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.product {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.product img { width: 100%; height: 180px; object-fit: cover; }
.product h3 { text-align: center; padding: 10px 0; color: #1b5e20; }
.product p { padding: 0 15px 15px; font-size: 0.95rem; text-align: center; }

/* About section */
#about p { max-width: 800px; margin: auto; font-size: 1.05rem; text-align: center; }

/* Contact section */
.contact { text-align: center; }
.contact img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin-bottom: 15px; border: 3px solid #4CAF50; }
.contact p { margin: 8px 0; font-size: 1rem; }
.contact a { color: #2E7D32; text-decoration: none; font-weight: 600; }
.contact a:hover { text-decoration: underline; }

/* Footer */
footer { background: #1b5e20; color: white; text-align: center; padding: 20px; font-size: 0.95rem; }
footer a { color: #C8E6C9; text-decoration: none; font-weight: bold; }
footer a:hover { text-decoration: underline; }

/* Responsive tweaks */
@media(max-width:600px) {
    header h1 { font-size: 1.8rem; }
    header p { font-size: 1rem; }
}
