/* GRUVBOX COLORS (Dark) */
:root {
    /* Primary Backgrounds */
    --bg-dark: #282828;
    --bg-light: #3c3836;
    /* Foreground/Text */
    --fg: #ebdbb2;
    /* Primary Accent (Orange) */
    --orange: #fe8019;
    /* Lighter Accent (Yellow) */
    --yellow: #fabd2f;
    --green: #b8bb26;
    --purple: #b16286;
}

/* GENERAL STYLES */
body {
    background-color: var(--bg-dark);
    color: var(--fg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* CARD CONTAINER (The main box) */
.card {
    background-color: var(--bg-light);
    border: 2px solid var(--orange);
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

/* HEADINGS */
h1 {
    color: var(--green);
    font-size: 2.2em;
    margin-top: 0;
    border-bottom: 2px dashed var(--bg-dark);
    padding-bottom: 10px;
}

h2 {
    color: var(--yellow);
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* LINKS AND LISTS */
.socials ul {
    list-style: none;
    padding: 0;
    margin-top: 5px;
}

.socials li {
    margin-bottom: 8px;
}

a {
    color: var(--fg); /* Default text color */
    text-decoration: none;
    border-bottom: 1px dashed var(--orange);
    transition: color 0.2s;
}

a:hover {
    color: var(--yellow);
    border-bottom: 1px solid var(--yellow);
}

/* FOOTER NOTE */
.footer-note {
    margin-top: 30px;
    font-size: 0.8em;
    color: var(--bg-dark); /* Dark text on dark background for subtlety */
    text-align: right;
    border-top: 1px solid var(--bg-dark);
    padding-top: 10px;
}

/* RESPONSIVENESS */
@media (max-width: 600px) {
    .card {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
}
