/* Custom styles for Olcott Beach Carousel Park */

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

.carousel-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.vintage-border {
    border: 3px solid var(--tertiary-yellow);
    border-radius: 10px;
    padding: 1rem;
}

.star-rating {
    color: var(--tertiary-yellow);
    font-size: 1.2rem;
}

.testimonial-card {
    background: var(--background);
    border-left: 4px solid var(--tertiary-yellow);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.park-hours {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.event-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-blue);
}

.pricing-highlight {
    background: var(--tertiary-green-light);
    border: 2px solid var(--tertiary-green);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
}

.vintage-carousel {
    background: url('/static/images/carousel-pattern.png') repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .attraction-grid {
        grid-template-columns: 1fr;
    }

    /* Prevent content overflow on mobile */
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
}