/*
Theme Name: Viaggiare Al Verde
Theme URI: https://viaggiarealverde.it
Author: Travel Arbitrage System
Description: Tema per arbitraggio viaggi con Bootstrap 5
Version: 2.0.0
Requires PHP: 7.4
Text Domain: viaggiare-al-verde
*/

/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Utility classes aggiuntive */
.hero-overlay {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.8) 100%);
}

.destination-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.promo-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Flatpickr custom */
.flatpickr-calendar {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.flatpickr-day.selected {
    background: #14b8a6 !important;
    border-color: #14b8a6 !important;
}

/* Admin styles */
.vav-meta-box .form-group {
    margin-bottom: 20px;
}

.vav-meta-box label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.vav-date-settings {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}
