/* Custom Styles for The Lynmouth Retreat */

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FBF8F3;
}

::-webkit-scrollbar-thumb {
    background: #A85B3F;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C09177;
}

/* Soft shadow utility */
.shadow-soft {
    box-shadow: 0 4px 24px rgba(38, 38, 38, 0.08);
}

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

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #A85B3F;
    outline-offset: 2px;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth anchor scroll offset */
html {
    scroll-padding-top: 80px;
}
