:root {
    --primary-color: #ff6600;
    --bg-color: #0a0a0a;
    --text-color: #cccccc;
}

/* Base Styles */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Layout */
.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    min-height: 100vh;
    padding: 2vw;
    box-sizing: border-box;
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(255, 102, 0, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 102, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5vw;
    color: var(--primary-color);
    text-decoration: none;
    border: 0.15em solid var(--primary-color);
    padding: 0.5em;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 0.5em var(--primary-color);
    transition: all 0.3s ease;
}

.logo:hover {
    box-shadow: 0 0 1em var(--primary-color);
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 1.5vw;
    font-size: 1vw;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5em 1em;
    border: 1px solid transparent;
}

nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 0.5em var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0.5em var(--primary-color);
}

/* Main Content Styles */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4em 0;
}

h1 {
    font-size: 4vw;
    color: var(--primary-color);
    margin-bottom: 0.5em;
    text-shadow: 0 0 0.2em var(--primary-color);
}

.tagline {
    font-size: 2vw;
    margin-bottom: 1em;
}

.description {
    font-size: 1.2vw;
    color: var(--text-color);
    margin-bottom: 2em;
    max-width: 80%;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 0.8em 2em;
    border: 0.15em solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 0 1em var(--primary-color);
}

/* Services Section Styles */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.service-category {
    background: rgba(255, 102, 0, 0.1);
    padding: 1.5em;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-category:hover {
    background: rgba(255, 102, 0, 0.2);
    box-shadow: 0 0 1em var(--primary-color);
}

.service-category h3 {
    color: var(--primary-color);
    font-size: 1.5vw;
    margin-bottom: 0.5em;
    text-shadow: 0 0 0.5em var(--primary-color);
}

.service-category p {
    font-size: 1vw;
}

/* Footer Styles */
footer {
    text-align: center;
    font-size: 0.8vw;
    color: #666666;
    margin-top: 2em;
    padding: 1em 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav {
        margin-top: 1em;
        justify-content: center;
    }

    .logo,
    h1,
    .tagline,
    .description,
    .cta-button,
    .service-category h3,
    .service-category p,
    footer {
        font-size: 16px;
    }

    nav a {
        font-size: 14px;
        margin: 0.5em;
    }
}