/*
 * Styles for the Pure‑Bio EU site replicating content from phyhuir.com.
 */

/* Base typography and layout */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero section with a soft green gradient */
.hero {
    background: linear-gradient(135deg, #7cc47f 0%, #49a96d 100%);
    padding: 6rem 1rem;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    background-color: #fff;
    color: #49a96d;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #f4f4f4;
}

/* Navigation styling */
nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav li {
    margin: 0.5rem 1rem;
}

nav a {
    text-decoration: none;
    color: #49a96d;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 3px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #f0f0f0;
}

main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #49a96d;
}

/* Product grid layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product {
    background-color: #fafafa;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #49a96d;
}

.product ul {
    padding-left: 1rem;
    margin: 0;
}

.product li {
    list-style-type: disc;
    margin-bottom: 0.25rem;
}

/* Contact section */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-list a {
    color: #49a96d;
    text-decoration: none;
    font-weight: 600;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer {
    background-color: #f7f7f7;
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}