/*
Theme Name: Transport Premium
Description: A simple, modern WordPress theme for transport services with working buttons and modals
Version: 1.0.0
Author: Your Name
License: GPL2
Text Domain: shadcn-theme
*/

/* Basic reset and styling - everything else is inline */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Basic responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Site structure */
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}