:root {
    --primary-color: #ffc300;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --background-color: #000814;
    --surface-color: #001d3d;
    --surface-color-hover: #003566;
    --accent-color: #ffd60a;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color) !important;
    background-color: var(--background-color) !important;
}

/* Header */
header {
    background: rgba(0, 29, 61, 0.95) !important;
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero-bg.jpg') !important;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
    color: var(--primary-color);
}

.hero-button:hover {
    background: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 4px 12px rgba(255, 195, 0, 0.2);
}

/* Products Section */
.products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

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

.product-card {
    background: var(--surface-color) !important;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 195, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    background: var(--surface-color-hover) !important;
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(255, 195, 0, 0.15);
}

.product-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.product-card i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 214, 10, 0.3);
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 195, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Content Pages */
.content-wrapper {
    max-width: 800px;
    margin: 120px auto 4rem;
    padding: 0 2rem;
}

.page-content {
    line-height: 1.8;
}

.page-content h1 {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.page-content ul {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Footer */
footer {
    background: var(--surface-color) !important;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    color: var(--text-muted);
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
} 