/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --nav-bg: #111;
    --nav-text: #00bcd4;
    --container-bg: #1a1a1a;
    --shadow: rgba(0, 255, 153, 0.2);
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --link-color: #e0e0e0;
    --link-hover: #ff0099;
}

/* Apply Dark Mode */
html, body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    background: url('premium-wood-metal.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 5vh 2vw;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
    position: relative;
    z-index: 2;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    z-index: 2;
}

/* Navigation */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
    background: var(--nav-bg);
    gap: 1rem;
}

nav a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

nav a:hover {
    color: var(--link-hover);
    text-shadow: 0 0 10px var(--link-hover);
}

/* Styling for links across the site */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--link-hover);
    text-shadow: 0 0 8px var(--link-hover);
}

/* Content Section */
.container {
    width: min(95%, 1000px);
    margin-inline: auto;
    padding: 3rem 1rem;
    background: var(--container-bg);
    box-shadow: 0 0 20px var(--shadow);
    border-radius: 0.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

pre {
    overflow-x: auto;
    white-space: pre-wrap;
    background-color: #111;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: monospace;
    box-shadow: inset 0 0 10px #000;
    max-width: 100%;
    box-sizing: border-box;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--nav-bg);
    color: var(--text-color);
    font-size: 0.9rem;
}

