/* HERO SECTION */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 5rem 1.5rem;
    background: var(--background);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 0.5rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
}

/* HERO VISUAL */
.hero-visual {
    display: flex;
    justify-content: center;
}

.terminal-preview {
    width: 100%;
    max-width: 500px;
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--text-secondary);
}

.terminal-bar {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background-color: var(--primary-color);
}

.dot-yellow {
    background-color: var(--text-primary);
}

.dot-green {
    background-color: var(--secondary-color);
}

.terminal-code {
    color: var(--text-primary);
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}
