body {
    margin: 0;
    padding: 0;
    background-color: #1B4B6B; /* Deep alpine lake blue */
    min-height: 100vh;
    overflow: hidden; /* Prevent scrollbars */
}

#cursor-follower {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

#paloma {
    width: 50px;
    height: auto;
    transform-origin: center;
    transform: rotate(45deg);
    position: relative;
}

#trail-container {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.trail-particle {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

#title {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Gasoek One', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 8px;
    pointer-events: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

#subtitle {
    position: fixed;
    top: calc(50% + 120px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    text-transform: lowercase;
    letter-spacing: 4px;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#menu-container {
    position: fixed;
    top: calc(50% + 200px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
    pointer-events: auto;
}

#apps-link, #projects-link, #contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    text-transform: lowercase;
    letter-spacing: 4px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

#apps-link:hover, #projects-link:hover, #contact-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    #title {
        font-size: 80px;
        letter-spacing: 4px;
        width: 90%;
        text-align: center;
    }

    #subtitle {
        font-size: 24px;
        letter-spacing: 2px;
        top: calc(50% + 60px);
        width: 90%;
        text-align: center;
    }

    #menu-container {
        flex-direction: column;
        gap: 20px;
        top: calc(50% + 180px);
    }

    #apps-link, #projects-link, #contact-link {
        font-size: 18px;
        letter-spacing: 2px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #title {
        font-size: 60px;
        letter-spacing: 3px;
    }

    #subtitle {
        font-size: 20px;
        letter-spacing: 1.5px;
        top: calc(50% + 50px);
    }

    #menu-container {
        gap: 15px;
        top: calc(50% + 160px);
    }

    #apps-link, #projects-link, #contact-link {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
} 