/* =========================
   Base Styles
   ========================= */
body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================
   Hero Section
   ========================= */
.hero {
    /* display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem; 
  padding: 6rem 2rem 4rem;
    padding-top: 85px !important;
    min-height: 600px;*/
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-ctas .btn {
    margin-right: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
}

/* CTA Buttons */
.btn-primary {
    background-color: #00ff88;
    border: none;
    color: #000;
    transition: all 0.25s ease-in-out;
}

.btn-primary:hover {
    background-color: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
}

.btn-outline:hover {
    background: #00ff88;
    color: #000;
}

/* =========================
   Blog Intro + Grid
   ========================= */
.intro {
    text-align: center;
    padding: 3rem 2rem;
}

.intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
}

.posts-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem;
}

.post-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.post-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.post-excerpt {
    color: #aaa;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

.read-more {
    color: #00ff88;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.hero-bg {
    background-image: url('hero-unit.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}