:root {
    --font-primary: 'Inter', sans-serif;
    --color-bg: #022c22;
    /* Deep Forest Green */
    --color-text: #ecfdf5;
    /* Mint White */
    --color-text-muted: #a7f3d0;
    /* Light Green Muted */
    --color-accent: #4ade80;
    /* Bright Green */
    --spacing-unit: 1rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100dvh;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(2, 44, 34, 0.5), rgba(2, 44, 34, 0.8)), url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 60vw;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    overflow: visible;
    fill: var(--color-text-muted);
}

.bottom-email {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
}

.bottom-email a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.bottom-email a:hover {
    color: var(--color-accent);
}