/* style.css - Master Stylesheet for Garden Paper Mart Academy */
:root {
    --primary-green: #145c36;
    --accent-green: #1e7d4d;
    --hover-green: #0f3c23;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

nav {
    background: var(--primary-green);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 600;
}

nav a:hover { background: var(--hover-green); }

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h2 { color: var(--primary-green); margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px; }

/* Grid for Home Page */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.card { padding: 20px; border: 1px solid #ddd; border-radius: 8px; }

/* Lesson List Style */
.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
/* This covers both the Green buttons and the Gray "Coming Soon" buttons */
.btn, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;      /* Fixes text touching edges: 12px top/bottom, 28px left/right */
    margin-top: 15px;        /* Adds space above the button */
    text-decoration: none;
    border-radius: 6px;      /* Makes corners slightly rounded */
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}
.btn, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;      /* Increased padding: 14px top/bottom, 32px left/right */
    margin-top: 20px;        /* Pushes the button away from the text above it */
    text-decoration: none;
    border-radius: 8px;      /* Professional rounded corners */
    font-weight: 700;        /* Bold text */
    text-align: center;
    min-width: 160px;        /* Ensures buttons have a consistent size */
    transition: transform 0.2s, background 0.3s;
}

.btn {
    background-color: #145c36;
    color: #ffffff !important;
    border: none;
}

.btn:hover {
    transform: scale(1.05);  /* Subtle zoom effect when hovering */
    background-color: #1a6d41;
}

.btn-secondary {
    background-color: #eeeeee;
    color: #777777 !important;
    border: 1px solid #cccccc;
}


.highlight {
    background: #e8f4ff;
    padding: 20px;
    border-left: 5px solid var(--accent-green);
    margin: 20px 0;
}
.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px; /* This creates the SEO-required gap between links */
    border-bottom: 1px solid #eee;
}

footer {
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}