* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #0ea5a4;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 165, 164, 0.2);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

html {
    scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(135deg, #0ea5a4 0%, #7c766c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}