/*
Theme Name: NetRunners
Theme URI: https://netrunners.digital
Description: Custom cyberpunk-inspired theme for NetRunners
Version: 1.0
Author: NetRunners
License: GPL v2 or later
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #00D9FF;
    --yellow: #FFFF00;
    --dark-bg: #0A0E27;
    --dark-secondary: #1a1f3a;
    --text-light: #E0E0E0;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

a { color: var(--cyan); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--yellow); }

header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--cyan);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img { height: 50px; width: auto; }

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

nav a:hover::after { width: 100%; }

main { margin-top: 80px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 3px solid var(--cyan);
}

.hero h1 {
    font-size: 3.5em;
    color: var(--cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.hero .tagline {
    font-size: 1.5em;
    color: var(--yellow);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan), var(--yellow));
    color: var(--dark-bg);
    padding: 15px 40px;
    border: 2px solid var(--cyan);
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

section {
    padding: 80px 20px;
    border-bottom: 2px solid var(--dark-secondary);
}

section h2 {
    font-size: 2.5em;
    color: var(--cyan);
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

section h3 { color: var(--yellow); margin-bottom: 15px; font-size: 1.5em; }

#about { background: var(--dark-secondary); }

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}

#services { background: var(--dark-bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-secondary);
    padding: 30px;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.service-card h3 { color: var(--yellow); margin-bottom: 15px; }
.service-card p { font-size: 0.95em; line-height: 1.7; color: var(--text-light); }

#contact { background: var(--dark-secondary); }

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-group { margin-bottom: 25px; }

label {
    display: block;
    margin-bottom: 8px;
    color: var(--cyan);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
    width: 100%;
    padding: 12px;
    background: var(--dark-bg);
    border: 2px solid var(--cyan);
    color: var(--text-light);
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

textarea { resize: vertical; min-height: 150px; }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--cyan), var(--yellow));
    color: var(--dark-bg);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

#blog { background: var(--dark-bg); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--dark-secondary);
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
    transform: translateY(-5px);
}

.blog-card-content { padding: 25px; }
.blog-card h3 { color: var(--cyan); margin-bottom: 10px; }
.blog-meta { color: var(--cyan); font-size: 0.85em; margin-bottom: 15px; }
.blog-card p { color: var(--text-light); margin-bottom: 15px; }
.read-more { color: var(--yellow); font-weight: bold; }

footer {
    background: var(--dark-secondary);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--cyan);
}

.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-links { margin-bottom: 20px; }
.footer-links a { margin: 0 15px; color: var(--cyan); }
.footer-links a:hover { color: var(--yellow); }
.footer-credit { color: var(--text-light); font-size: 0.9em; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2em; }
    .hero .tagline { font-size: 1.2em; }
    section h2 { font-size: 1.8em; }
    nav ul { display: none; }
    .services-grid { grid-template-columns: 1fr; }
}
