/* styles/content.css */
.hero-content {
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-content {
    text-align: center;
    padding: 2rem;
    color: white;
}

.services-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.projects-content {
    text-align: center;
    padding: 2rem;
    color: white;
}

.projects-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.project h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.about-content {
    text-align: center;
    padding: 2rem;
    color: white;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.skill {
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--space-black);
    border-radius: 20px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}
