/* 1. Global Reset & Variables */
:root {
    --bg-dark: #121212;
    --bg-secondary: #1a1a1a;
    --neon-green: #ffffff; /* Updated from gold */
    --text-light: #f4f4f4;
    --text-muted: #a0a0a0;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 2. Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 2px solid var(--neon-green);
    background-color: var(--bg-secondary);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

nav a {
    color: var(--neon-green);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--text-light);
}

/* 3. Main Content Area */
main {
    flex: 1;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

h1, h2 {
    color: var(--neon-green);
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* 4. Footer Styling */
footer {
    padding: 30px 50px;
    text-align: center;
    border-top: 1px solid var(--neon-green);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* 5. Utility Classes for Pages */
.card {
    background-color: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--neon-green);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 10px;
}

.button:hover {
    background-color: #32d912; /* Darker neon green for hover */
}

/* 6. Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    nav a {
        margin: 0 10px;
    }
}

/* Add to your existing CSS */
.button.outline {
    background-color: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    margin-left: 10px;
}

.button.outline:hover {
    background-color: var(--neon-green);
    color: var(--bg-dark);
}
/* Add this to style.css */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
}