* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    overflow: hidden;
}
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/wolf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Dark overlay for better text readability */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    max-width: 200px;
    height: auto;
}
.main-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 90%;
}

/* Footer with project links */
.footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 40px;
    align-items: center;
}

.project-link {
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.project-link:hover {
    color: #f0f0f0;
    border-bottom: 1px solid white;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        background-attachment: scroll;
    }

    .logo {
        top: 20px;
        left: 20px;
        max-width: 150px;
    }

    .main-text {
        font-size: 2.2rem;
        letter-spacing: 1px;
        padding: 0 20px;
    }

    .footer {
        bottom: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .project-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
        top: 15px;
        left: 15px;
    }

    .main-text {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .footer {
        bottom: 15px;
        gap: 15px;
    }

    .project-link {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* Prevent zooming and scrolling on mobile */
@media (max-width: 768px) {
    html {
        touch-action: manipulation;
    }
}
