/*
Theme Name: My Vegan Blog - LoveIt Pro
Description: High-end Vegan Aesthetic based on Elementor LoveIt Kit
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-green: #78a206;
    --soft-cream: #fdfcf7;
    --text-dark: #2d2e2d;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-cream);
    color: var(--text-dark);
    margin: 0;
}

/* Header - Modern & Clean */
header {
    background-color: var(--white);
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header h1 a {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

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

/* Hero Section */
.hero-banner {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f3f5ed, var(--soft-cream));
}

.hero-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 0;
    line-height: 1.1;
}

.hero-banner p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 15px;
}

/* Post Grid */
.posts {
    max-width: 1200px;
    margin: -50px auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

article {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

article:hover { transform: translateY(-10px); }

.post-content { padding: 30px; }

article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0 0 15px 0;
}

article h2 a { color: var(--text-dark); text-decoration: none; }

article img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.read-more {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}