@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* Base styles */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Selection styles */
::selection {
    background-color: #82b4d6;
    color: #040920;
}

/* Focus styles */
button:focus, a:focus, input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #82b4d6;
}

/* Animation classes */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Responsive typography */
@media (min-width: 768px) {
    .text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

/* Custom underline effect */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #82b4d6;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}