/*
Theme Name: Express Car Rentals Theme
Theme URI: https://axistheme.com/
Author: Axis Generator
Author URI: https://axistheme.com/
Description: A custom WordPress theme for Express Car Rentals, optimized for car rental services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: express-car-rentals
Tags: block-theme, custom-background, custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, theme-options, threaded-comments, translation-ready
*/

/* 
 * This is a Block Theme
 * Styles are applied to blocks in the editor and on the frontend
 */

/* General Theme Styles */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.site-header {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navigation Styles */
.wp-block-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hero Section Styles */
.wp-block-cover.alignfull {
    margin-top: 0;
    margin-bottom: 0;
}

/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Component Specific Styles for car-rental */
.fleet-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fleet-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fleet-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.booking-form {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fleet-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .wp-block-navigation {
        flex-direction: column;
    }
}
