/*
Theme Name: Black Thistle Transportation (Multi-Page)
Description: Premium luxury EV chauffeur service theme with traditional WordPress page management. Features modern design, easy content editing, Stripe payment integration, and responsive layout optimized for luxury transportation services.
Author: Manus AI
Version: 2.0
License: GPL v2 or later
Text Domain: black-thistle-multipage
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #e5e7eb;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.page-content {
    padding: 8rem 0 5rem;
    min-height: 70vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo img {
    height: 2.5rem;
    width: 2.5rem;
    margin-right: 0.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
    color: #fbbf24;
}

.nav-menu a.current-menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fbbf24;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #fbbf24;
}

.btn-primary {
    background-color: #d97706;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b45309;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Hero Section */
.hero {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

.hero-bg {
    position: relative !important;
    width: 100% !important;
}

.hero-bg img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-width: 100% !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.3) !important;
}

.hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    width: 90% !important;
    max-width: 1200px !important;
    text-align: center !important;
}
.hero-logo {
    height: 8rem;
    margin: 0 auto 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Page Header */
.page-header {
    background-color: #111827;
    padding: 8rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    background-color: #000000;
    padding: 5rem 0;
}

.content-section:nth-child(even) {
    background-color: #111827;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #d97706;
    transform: translateY(-5px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: #d97706;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.service-price {
    color: #d97706;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Fleet Content */
.fleet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.fleet-image img {
    width: 100%;
    border-radius: 0.5rem;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fleet-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
}

.fleet-feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.fleet-feature-text p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Booking Form */
.booking-form {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    background-color: #374151;
    border: 1px solid #4b5563;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d97706;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.price-display {
    background-color: #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0;
}

.price-display .price-label {
    color: #9ca3af;
}

.price-display .price-amount {
    color: #d97706;
    font-weight: 600;
    font-size: 1.25rem;
}

.price-display .price-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-item {
    text-align: center;
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #d97706;
    transform: translateY(-5px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    color: #d97706;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-link {
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-link:hover {
    color: #f59e0b;
}

/* WordPress Content Styles */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-columns {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.wp-block-column {
    flex: 1;
}

.wp-block-image {
    margin-bottom: 2rem;
}

.wp-block-image img {
    border-radius: 0.5rem;
}

/* Footer */
.footer {
    background-color: #111827;
    border-top: 1px solid #374151;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand img {
    height: 2rem;
    width: 2rem;
    margin-right: 0.75rem;
}

.footer-brand-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-brand-text p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d97706;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Add this new rule */
    .hero {
        padding-top: 70px !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .fleet-content {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .wp-block-columns {
        flex-direction: column;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.rounded { border-radius: 0.375rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.transition { transition: all 0.3s ease; }
