/*
Theme Name: A Alcatea
Theme URI: https://agilstore.pt
Description: Tema para Brunch & Café A Alcatea, refatorado de React para PHP/HTML com Tailwind CSS.
Version: 1.0
Author: Agilstore
Author URI: https://agilstore.pt
Text Domain: a-alcatea
*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Utility to hide scrollbar for carousel */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.script {
    font-family: 'Dancing Script', cursive;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-ticker {
    display: flex;
    width: max-content;
    animation: ticker 40s linear infinite;
}

.animate-ticker:hover {
    animation-play-state: paused;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.animate-draw {
    stroke-dashoffset: 1;
    stroke-dasharray: 1;
    animation: draw .5s ease-in-out forwards;
    animation-delay: 0.3s;
}

/* Custom auxiliary colors */
.text-alcatea-coral {
    color: #fb7d7d;
}

.bg-alcatea-coral {
    background-color: #fb7d7d;
}

.text-alcatea-green {
    color: #7fa17b;
}

.bg-alcatea-green {
    background-color: #7fa17b;
}