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

body {
    width: 100%;
    height: 100vh;
    background-color: #faf3e8; /* Matches the image background */
    position: relative;
    overflow: hidden;
}

body::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 50vh;
    background-image: url('images/logo.png');
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding: 1rem 3rem;
    background-color: rgba(250, 243, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.main-header {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    padding: 2rem 0 0.5rem 0;
    z-index: 10;
}

.subtitle {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #888;
    z-index: 10;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}

.nav-link-subtle {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    opacity: 0.7;
}

.nav-link-subtle:hover {
    color: #666;
    opacity: 1;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: rgba(250, 243, 232, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333;
}

.footer-copyright {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888;
}

.footer-copyright p {
    margin: 0;
}
