/* Special Offer Page - Minimal CSS (relies on layout.css) */

/* Offer Section */
.offer-section {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 1rem auto;
}

.offer-container {
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--accent-shadow);
}

.offer-highlight {
    padding: 1.5rem;
    text-align: center;
}

.offer-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.offer-period {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.offer-simple-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.offer-cta-simple {
    text-align: center;
    padding: 0 1.5rem 1.5rem;
}

/* Suggested Rides Section */
.suggested-rides-section {
    padding: 2rem 1.5rem;
}

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

.section-container h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Ride Cards */
.rides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ride-card-link {
    text-decoration: none;
    color: inherit;
}

.ride-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--accent-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
}

.ride-card-link:hover .ride-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--accent-shadow);
}

.ride-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.ride-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ride-card-link:hover .ride-image {
    transform: scale(1.05);
}

.ride-content {
    padding: 1.5rem;
}

.ride-content h3 {
    margin-bottom: 1rem;
}

.ride-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    font-size: 0.875rem;
    background: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-section { padding: 1.5rem 1rem; }
    .offer-highlight h2 { font-size: 1.75rem; }
    .section-container h2 { font-size: 1.875rem; }
    .rides-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .offer-highlight h2 { font-size: 1.5rem; }
}
