@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Orbitron:wght@400;700&display=swap');

:root {
    --bg-color: #0f172a; /* Dark Blue/Slate */
    --surface-color: #1e293b; /* Slightly lighter slate */
    --primary-text-color: #e2e8f0; /* Light gray/slate */
    --secondary-text-color: #94a3b8; /* Muted gray/slate */
    --accent-color: #00f7ff; /* Bright Cyan */
    --accent-color-hover: #9effff;
    --border-color: rgba(0, 247, 255, 0.2);
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto Mono', monospace;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--primary-text-color);
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

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

/* Header */
header {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 5px var(--accent-color);
}

header nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

header nav li {
    display: inline;
    padding: 0 15px;
}

header nav a {
    color: var(--primary-text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s, text-shadow 0.3s;
}

header nav a:hover, header nav a.active {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

/* Hero Section (index.html) */
.hero {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(circle, rgba(30, 41, 59, 0.8) 0%, var(--bg-color) 70%);
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--secondary-text-color);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* General Content */
h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--accent-color);
    text-shadow: 0 0 3px rgba(0, 247, 255, 0.5);
}

h1 {
    font-size: 36px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

h2 {
    font-size: 28px;
}

p {
    color: var(--secondary-text-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color-hover);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

li::before {
    content: '>>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Button */
.button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--accent-color);
}

/* Card Layout */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 247, 255, 0.1);
}

.card h2 {
    margin-top: 0;
}

.card p {
    flex-grow: 1;
}

.card strong {
    color: var(--primary-text-color);
}

/* Team Page Specifics */
.member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

/* Project Page Specifics */
.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Highlight Box */
.highlight {
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    margin-top: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Contact Page */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-option {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.contact-option h2 {
    margin-top: 0;
}

/* News Page */
.preparing {
    text-align: center;
    font-size: 48px;
    margin-top: 100px;
    font-family: var(--font-primary);
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Footer */
footer {
    background: var(--surface-color);
    color: var(--secondary-text-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}