/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: whitesmoke;
}

/* Hero section styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, powderblue 0%, #3b82f6 100%);
    color: whitesmoke;
    text-align: center;
}

.hero-content h1 {
    font-family: cursive;
    font-size: 5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Form styles */
input,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Card hover effects */
.shadow-lg {
    transition: transform 0.2s, box-shadow 0.2s;
}

.shadow-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Skill bar animation */
.skill-bar {
    transition: width 1s ease-in-out;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: whitesmoke;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}