/* Custom styles to complement Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Mobile-specific fixes */
@media (max-width: 640px) {
    body {
        height: -webkit-fill-available;
    }

    html {
        height: -webkit-fill-available;
    }

    .container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}