/*
Theme Name: Alberto Sautúa V10
Theme URI: https://albertosautua.com
Author: Alberto Sautúa
Author URI: https://albertosautua.com
Description: Alberto Sautúa Theme
Version: 10.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alberto-sautua-v10
*/

/* 
 * This theme uses Tailwind CSS via CDN for styling to match the original React design.
 * Custom CSS overrides can be placed here.
 */

:root {
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility for hiding scrollbar but allowing scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Carousel Fix: Disable animation on mobile */
@media (max-width: 768px) {
    .animate-scroll {
        animation: none !important;
    }
}