/*
Theme Name: Car Hire ES
Theme URI: https://carhire-es.com
Author: carhire-es
Description: Minimal hand-coded theme for carhire-es.com. No page builder, no block editor. Header/footer/widget are shared, page bodies are individual hand-written markup.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
*/

/* Custom styles ported from the original homepage. Utility classes are in assets/css/tailwind.css */

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

/* Localrent widget preloader */
.lr-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(112, 190, 167, 0.25);
    border-top-color: #70bea7;
    border-radius: 50%;
    animation: lr-spin 0.9s linear infinite;
}
@keyframes lr-spin {
    to { transform: rotate(360deg); }
}
#widget-preloader {
    transition: opacity 0.5s ease;
}
#widget-preloader.lr-hidden {
    opacity: 0;
    pointer-events: none;
}
#lr-preloader-text {
    transition: opacity 0.4s ease;
    min-height: 1.4em;
    text-align: center;
}

/* Header nav links - styled here so wp_nav_menu output needs no extra classes */
header nav a {
    color: #4b5563;
    text-decoration: none;
}
header nav a:hover {
    color: #70bea7;
}
