/* MySQL Box - Technical Theme */
:root {
    --mysql-orange: #f46d25;
    --mysql-blue: #00758f;
    --dark: #1f2937;
    --light: #374151;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: var(--dark);
    color: var(--white);
}

.header {
    background: var(--light);
    padding: 1rem 0;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.nav__logo {
    font-size: 1.5rem;
    color: var(--mysql-orange);
    text-decoration: none;
}

.nav__menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav__link {
    color: var(--white);
    text-decoration: none;
}

.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--light) 100%);
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero__code pre {
    background: #111827;
    color: var(--mysql-orange);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    font-family: 'Roboto Mono', monospace;
}

.section {
    padding: 3rem 1rem;
}

.services__container,
.documentation__container,
.resources__container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--mysql-orange);
}

.services__grid,
.documentation__grid,
.resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-card,
.doc-card,
.resource-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--mysql-orange);
}

.service-card h3,
.doc-card h3,
.resource-card h3 {
    color: var(--mysql-orange);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card li::before {
    content: "🔍 ";
}

.footer {
    background: var(--dark);
    padding: 2rem 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
}
