/* =========================================
   FIND THE TRAILER PAGE SPECIFIC STYLES
========================================= */

body {
    background-color: #f9f9f9;
    color: var(--text-dark, #333);
    line-height: 1.6;
}

/* Hero Section with Background Image */
.find-the-trailer-title-section {
    background-image: url('../images/food-truck-front-bg.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light, #ffffff);
    padding: 20px;
}

.find-the-trailer-title-section h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.find-the-trailer-title-section p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light, #ffffff);
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

/* Locations Section Layout */
.locations-section {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.locations-section h2 {
    font-size: 2.2rem;
    color: var(--brand-red);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    text-align: left;
}

#loading-text {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    padding: 40px 0;
}

.schedule-grid > div, 
.schedule-card {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--brand-red);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.schedule-grid > div:hover, 
.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.schedule-grid > div h3, 
.schedule-card h3 {
    color: var(--text-dark, #333);
    font-size: 1.5rem;
    margin-bottom: 12px;
    border-left: 3px solid var(--brand-orange, #ff6600);
    padding-left: 10px;
}

.schedule-grid > div p, 
.schedule-card p {
    color: #555;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.schedule-grid > div .time, 
.schedule-card .time {
    font-weight: 600;
    color: var(--brand-red);
    display: block;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #f9f9f9;
    padding: 80px 20px;
    border-top: 1px solid #ddd;
}

.cta h2 {
    font-size: 2rem;
    color: var(--text-dark, #333);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .find-the-trailer-title-section h2 {
        font-size: 2.5rem;
    }
}
