/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif; /* High-tech font; fallback to sans-serif if not loaded */
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a); /* Dark, modern gradient (unchanged) */
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
}

/* Minimal Steampunk Elements: Subtle gears as background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23c49b63" stroke-width="2" fill="none"/><path d="M50 10 L50 0 M50 90 L50 100 M10 50 L0 50 M90 50 L100 50 M20 20 L10 10 M80 20 L90 10 M20 80 L10 90 M80 80 L90 90" stroke="%23c49b63" stroke-width="2"/></svg>') repeat;
    opacity: 0.05; /* Very subtle for minimal vibe */
    pointer-events: none;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9); /* Dark, semi-transparent for high-tech feel */
    border-bottom: 1px solid #c49b63; /* Brass steampunk accent */
    z-index: 1000;
    padding: 1em 0;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav li {
    display: inline;
}

nav a {
    color: #c0c0c0; /* Silverish metallic */
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #00ffcc; /* Neon hover for high-tech */
    text-shadow: 0 0 5px #00ffcc;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c49b63; /* Brass underline on hover */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Header/Hero Section - Adjusted for nav */
header {
    height: calc(100vh - 60px); /* Account for nav height */
    margin-top: 60px; /* Push down below fixed nav */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c0c0c0, transparent); /* Adjusted to silverish separator */
}

/* Updated h1 Styles */
h1 {
    font-family: 'Playfair Display', serif; /* Serif font with tapered ends, italic, and bold for thickness */
    font-style: italic;
    font-weight: 700; /* Thicker weight */
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c0c0c0; /* Silverish/metallic color */
    text-shadow: 0 0 10px #a9a9a9, 0 0 20px #a9a9a9; /* Metallic glow effect */
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #a9a9a9; }
    to { text-shadow: 0 0 15px #a9a9a9, 0 0 30px #a9a9a9; }
}

p {
    font-size: 1.5rem;
    margin: 1em 0;
    max-width: 600px;
    color: #b3b3b3;
}

/* Button with Steampunk Touch: Brass-like border, slightly stylized */
.cta-button {
    padding: 1em 2em;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid #c49b63; /* Brass color for steampunk */
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* Slight stylization for modern feel */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192,192,192,0.2), transparent); /* Silverish hover gradient */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    background: rgba(196, 155, 99, 0.1); /* Subtle brass hover */
    box-shadow: 0 0 10px #c0c0c0; /* Silverish shadow */
}

.cta-button:hover::before {
    opacity: 1;
}

/* Sections for Content */
section {
    padding: 5em 2em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    color: #c0c0c0; /* Adjusted to silverish for consistency */
    margin-bottom: 1em;
    position: relative;
	text align: center;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c49b63; /* Steampunk brass underline */
    margin: 0.5em auto 0;
	text align: center;
}

/* Footer */
footer {
    padding: 2em;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    font-size: 0.9rem;
    color: #808080;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    p { font-size: 1.2rem; text align: center; }
    nav ul {
        flex-direction: column;
        gap: 1em;
    }
}