/* 
   MYZENQ - Modern Wellness Brand 
   Premium styling for GLP-1 Blog
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #2E7D32;
    --primary-light: #4CAF50;
    --primary-soft: #E8F5E9;
    --secondary: #1E4D2B;
    --accent: #E91E63;
    --bg-light: #F9FAFB;
    --text-dark: #111827;
    --text-muted: #4B5563;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header & Logo */
header {
    background-color: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
    text-transform: uppercase;
}

.logo span {
    color: var(--text-dark);
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-soft) 100%);
}

.hero-content h1 {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-img img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.hero-img img:hover {
    transform: scale(1.02);
}

/* Section Styling */
section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    margin-top: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Info Box */
.info-box {
    background-color: var(--white);
    border-left: 5px solid var(--primary);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

/* Lists */
ul {
    list-style: none;
    margin: 1.5rem 0;
}

ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Note Section */
.note-section {
    background-color: #FFF9C4;
    /* Light Yellow */
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    font-style: italic;
    border: 1px solid #FBC02D;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background-color: var(--secondary);
    color: var(--white);
    margin-top: 5rem;
}

footer .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

/* Responsiveness */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 5%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .card {
        padding: 1.5rem;
    }
}