/* === Base Styles === */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f8f5ed;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: #B6964B;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.link-list {
    list-style: none;
    padding-left: 0;
    margin: 1em 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.link-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 0.5em 1em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.link-list li:hover {
    transform: scale(1.03);
}

.store-logo {
    height: 100px;
    width: auto;
    transition: transform 0.2s ease;
    display: block;
    background-color: white;
    padding: 0.25em 0.5em;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.store-logo:hover {
    transform: scale(1.05);
}


/* === Header === */
header {
    background-color: #22312C;
    color: white;
    text-align: center;
    padding: 2em 0;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* === Top Navigation === */
.top-nav {
    background-color: #C57069;
    padding: 0.5em 1em;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    display: none;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1em;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5em;
}

.nav-links li a:hover {
    background-color: #B6964B;
    border-radius: 4px;
}

/* === Main Content === */
main {
    padding: 2em;
    text-align: center;
    flex-grow: 1;
}

/* === Featured Plants Section === */
.featured-plants {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2em;
}

.plant-card {
    width: 250px;
    margin: 1em;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.plant-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1em;
}

/* === Footer === */
footer {
    background-color: #22312C;
    color: white;
    text-align: center;
    padding: 1em 0;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }

    .plant-card {
        width: 45%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #C57069;
        width: 50%;
        position: sticky;
        top: 50px;
        bottom: 50px;
        left: 0;
        text-align: center;
        z-index: 5;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: .5px;
        border-top: .5px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }

    .plant-card {
        width: 90%;
    }

@media (max-width: 480px) {
        .link-list {
            flex-direction: column;
            align-items: center;
        }
    }
}

.care-guide {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.6;
}

.care-guide h1 {
    text-align: center;
    color: #22312C;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 1em;
}

.care-guide h2 {
    color: #C57069;
    font-size: 1.4em;
    margin-top: 1.5em;
}

.care-guide ul {
    padding-left: 1.2em;
    list-style: disc;
}

.care-guide p a {
    color: #C57069;
    text-decoration: underline;
}

.care-guide p a:hover {
    color: #B6964B;
}
/* === Care Guide Page === */
.care-guide {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.6;
}

.care-guide h1 {
    text-align: center;
    color: #22312C;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 1em;
}

.care-guide h2 {
    color: #C57069;
    font-size: 1.4em;
    margin-top: 1.5em;
}

.care-guide ul {
    padding-left: 1.2em;
    list-style: disc;
}

.care-guide p a {
    color: #C57069;
    text-decoration: underline;
}

.care-guide p a:hover {
    color: #B6964B;
}

  .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            padding: 2.5rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2d3748;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.875rem;
            margin-bottom: 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Quicksand', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            box-sizing: border-box;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
        }
        
        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-form button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            font-family: 'Quicksand', sans-serif;
        }
        
        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.4);
        }
        
        .contact-form button:active {
            transform: translateY(0);
        }
        
        .contact-info {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px;
        }
        
        .contact-info p {
            margin: 0.5rem 0;
            font-size: 1.1rem;
        }
        
        .contact-info a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }