/* Reset and base styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #e8d6b0;
    color: #000000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* Main container - centers content */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Content wrapper - vertical layout, centered */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* Name styles */
.name {
    font-family:  'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.first-name {
    display: block;
    font-size: 4rem;
    font-weight: 400;
}

.last-name {
    display:  block;
    font-size: 5rem;
    font-weight: 700;
}

/* Highlighted letters (d, m, g, z) */
.highlight {
    color: #8b5a2b;
}

/* Navigation links */
.navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:: after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height:  1px;
    background-color: #8b5a2b;
    transition:  width 0.2s ease;
}

.nav-link:hover {
    color: #8b5a2b;
}

. nav-link:hover::after {
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .first-name {
        font-size: 3rem;
    }

    .last-name {
        font-size: 3.75rem;
    }
}

@media (max-width: 480px) {
    .first-name {
        font-size: 2.25rem;
    }

    .last-name {
        font-size: 2.75rem;
    }

    .navigation {
        gap: 2rem;
    }

    .nav-link {
        font-size: 1rem;
    }
}
