/*
Theme Name: ServiCar
Description: Tema profesional para empresa de rent-a-car en la Patagonia. Incluye secciones para flota de vehículos, destinos turísticos y formularios de contacto.
Version: 1.1
Author: Jorge Morales-bedadev.cl
Text Domain: servicar
*/

/* Custom styles to integrate the brand's look and feel */
body {
    font-family: 'Lato', sans-serif;
}

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

.hero-bg {
    background-size: cover;
    background-position: center;
}

.brand-blue {
    color: #2E6E9C;
}

.brand-red {
    color: #C43634;
}

.bg-brand-blue {
    background-color: #2E6E9C;
}

.bg-brand-red {
    background-color: #C43634;
}

.border-brand-red {
    border-color: #C43634;
}

.hover\:bg-brand-red-dark:hover {
    background-color: #a12c2a;
}

.hover\:bg-brand-blue-dark:hover {
    background-color: #24587e;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

/* WordPress specific styles */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.wp-block-group {
    margin: 0;
}

/* Admin bar adjustments */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* Contact form styles */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2E6E9C;
    box-shadow: 0 0 0 3px rgba(46, 110, 156, 0.1);
}

.contact-form button {
    background-color: #C43634;
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #a12c2a;
}

/* Mobile menu alignment */
.mobile-menu a {
    display: block;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.875rem; /* 14px */
    color: #4a5568; /* gray-700 */
}
.mobile-menu a:hover {
    background-color: #f7fafc; /* gray-100 */
}