/* Color Variables */
:root {
    --hex-magenta: #F72585;
    --hex-black: #001514;
    --hex-g9: #1A2E2D;
    --hex-g8: #334746;
    --hex-g7: #4D605F;
    --hex-g6: #667978;
    --hex-g5: #809291;
    --hex-g4: #99ACAA;
    --hex-g3: #B3C5C3;
    --hex-g2: #CCDEDC;
    --hex-white: #FFFFFF;

    --pico-black: #000000;
    --pico-dark-blue: #1D2B53;
    --pico-dark-purple: #7E2553;
    --pico-dark-green: #008751;
    --pico-brown: #AB5236;
    --pico-dark-gray: #5F574F;
    --pico-light-gray: #C2C3C7;
    --pico-white: #FFF1E8;
    --pico-red: #FF004D;
    --pico-orange: #FFA300;
    --pico-yellow: #FFEC27;
    --pico-green: #00E436;
    --pico-blue: #29ADFF;
    --pico-indigo: #83769C;
    --pico-pink: #FF77A8;
    --pico-peach: #FFCCAA;
}

/* Font Declaration */
@font-face {
    font-family: 'DepartureMono';
    src: url('../fonts/DepartureMono-Regular.woff2') format('woff2');
}

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

body {
    font-family: 'DepartureMono', monospace;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.6; 
    background-color: var(--pico-black);
    color: var(--pico-white);
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, li, table, th, td {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

button, input, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 0.5rem;
}

:focus {
    outline: none;
}

/* Link Styles */
a,
a:active,
a:visited {
    color: var(--hex-magenta);
    text-decoration: none;
    background-color: transparent;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--pico-white);
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
}

/* Layout Styles */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    margin-bottom: 3rem;
}

.logo img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
}

/* Contact Form Styles */
.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 2em 0;
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    color: var(--pico-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75em;
    background-color: var(--pico-dark-blue);
    border: 2px solid var(--pico-dark-gray);
    border-radius: 2px;
    color: var(--pico-white);
    font-family: inherit;
    font-size: inherit;
    transition: border-color 0.2s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hex-magenta);
}

.submit-btn {
    background-color: var(--hex-magenta);
    color: var(--pico-white);
    border: none;
    padding: 0.75em 2em;
    border-radius: 2px;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    transition: background-color 0.2s ease-in-out;
}

.submit-btn:hover {
    background-color: var(--pico-pink);
}

.submit-btn:disabled {
    background-color: var(--pico-dark-gray);
    cursor: not-allowed;
}

.form-status {
    margin-top: 1em;
}

/* Footer Styles */
.footer {
    margin-top: 3rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link a {
    color: var(--pico-white);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-link a:hover {
    color: var(--hex-magenta);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
}
