/* Custom styles for portfolio */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove default form styling */
input, textarea, select {
    font-family: inherit;
}

/* Custom video player styling */
video {
    background-color: #0f172a;
}

video::-webkit-media-controls-panel {
    background-color: #1e293b;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: #f1f5f9;
}

/* Smooth transitions */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Focus states for accessibility */
button:focus, a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Line clamp for truncated text */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.3s ease-in-out;
}

/* Responsive font sizing */
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
