/*
 Theme Name: Easy Peasy Hub
 Theme URI: https://www.easypeasyhub.com
 Author: Your Name
 Description: Custom theme for my personal hub and Easy Peasy English.
 Version: 1.0
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #020617;
    color: #e5e7eb;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-bottom: 1px solid #111827;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #6366f1);
}

.site-brand h1 {
    margin: 0;
    font-size: 22px;
    color: #f9fafb;
}

.site-brand p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #9ca3af;
}

/* Menu */
.main-menu {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

.main-menu li a:hover {
    text-decoration: underline;
}

/* Hero */
.home-main {
    padding: 40px 24px 64px;
    max-width: 960px;
    margin: 0 auto;
}

.hero {
    margin-bottom: 40px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    color: #a855f7;
    margin: 0 0 8px;
}

.hero h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #f9fafb;
}

.hero-text {
    margin: 0 0 20px;
    color: #9ca3af;
    max-width: 640px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #f9fafb;
}

.btn-ghost {
    border-color: #4b5563;
    color: #e5e7eb;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: #020617;
    border: 1px solid #111827;
    border-radius: 12px;
    padding: 18px 20px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #f9fafb;
}

.card p {
    margin: 0 0 12px;
    color: #9ca3af;
    font-size: 14px;
}

.card-link {
    font-size: 14px;
    color: #a855f7;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

.card-muted {
    opacity: 0.7;
}

.tag-soon {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}

body {
    border: 10px solid red;
}
