/* Basic reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.site-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 10px 0;
    width: 100%;
}

.nametag {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.desc {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Navigation styles */
.site-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
}

.site-nav a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.site-nav a:hover {
    color: #2e7d32;
    transform: translateY(-3px);
}

.material-symbols-rounded {
    font-size: 28px;
}

.icon-filled {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-nav a:hover .icon-outline {
    opacity: 0;
}

.site-nav a:hover .icon-filled {
    opacity: 1;
}

/* Main content placeholder */
.main-content {
    flex: 1;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.welcome-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.welcome-section h2 {
    color: #2e7d32;
    margin-bottom: 15px;
}
.featured-plant { 
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba (0, 0, 0, 0.05);
    margin-bottom: 30px;
}
div.plant-info h2 {
    color: rgba(46, 125, 50);
    margin-bottom: 15px;
    font-size: 24px;
}
.featured-plant p {
    color: #2e7d32;
    margin-bottom: 15px;
}

/* Footer styles */
.copy-footer {
    text-align: center;
    padding: 20px;
    background-color: #2e7d32;
    color: white;
    margin-top: auto;
}

.copy-footer a {
    color: #a5d6a7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copy-footer a:hover {
    color: white;
}

.heart {
    color: #ffcdd2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nametag {
        font-size: 2rem;
    }
    
    .desc {
        font-size: 1rem;
    }
    
    .site-nav {
        gap: 20px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
}
  /* Plant Grid Styles */
        .plant-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .plant-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1/1;
            transition: transform 0.3s ease;
        }
        
        .plant-item:hover {
            transform: scale(1.03);
        }
        
        .plant-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .plant-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(46, 125, 50, 0.8);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .plant-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 15px;
                gap: 15px;
            }
        }
        /* Plant Detail Page Styles */
.plant-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.plant-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
}

.plant-detail-image {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plant-info {
    flex: 1;
    min-width: 300px;
}

.plant-info h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.plant-info p {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.care-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.care-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
}

.care-item .material-symbols-rounded {
    color: #2e7d32;
    font-size: 24px;
}

.fun-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.fun-fact .material-symbols-rounded {
    color: #2e7d32;
    font-size: 28px;
}

.fun-fact p {
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .plant-detail {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .plant-image-container {
        width: 100%;
        max-width: 400px;
    }
    
    .care-item {
        padding: 8px;
    }
}
/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .material-symbols-rounded {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
}
.learn-more {
    color: #1b5e20;
}
/* About Page Styles */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.mission-statement {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #2e7d32;
}

.mission-statement .material-symbols-rounded {
    color: #2e7d32;
    font-size: 36px;
}

.mission-statement p {
    margin: 0;
    font-style: italic;
    color: #555;
}

.team-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.team-section h2 {
    color: #2e7d32;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #e8f5e9;
}

.team-member h3 {
    color: #2e7d32;
    margin: 10px 0 5px;
}

@media (max-width: 600px) {
    .about-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .mission-statement {
        flex-direction: column;
        text-align: center;
    }
}
/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .material-symbols-rounded {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
}

.contact-card a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

.submit-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1b5e20;
}

.submit-btn .material-symbols-rounded {
    font-size: 20px;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px 15px;
    }
    
    .contact-card,
    .contact-form {
        padding: 20px;
    }
}
/* Form Success Message */
#form-success {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 20px auto;
    max-width: 500px;
}

#form-success h3 {
    color: #2e7d32;
    margin: 15px 0 10px;
}

#form-success p {
    color: #555;
}

/* Existing form styles (ensure these are in your CSS) */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s ease;
}

.submit-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: background 0.3s ease;
}