/* Custom CSS for Japan Best Time Section Widget */
/* Add any global variables if needed; assuming they are defined elsewhere or add defaults */
/* :root {
    --dark-color: #333;
    --primary-color: #ff6b35;
    --accent-color: #f7931e;
}
 */
/* Section Styling - Renamed for uniqueness */
/* .btv-section {
    padding: 100px 0;
    position: relative;
} */

.btv-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.btv-section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.btv-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

/* Season Cards - Renamed and CSS adjusted for uniqueness */
.btv-season-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btv-season-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.btv-season-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.btv-season-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.btv-season-spring {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.btv-season-summer {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.btv-season-autumn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.btv-season-winter {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.btv-season-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
    z-index: 1;
}

.btv-season-content {
    padding: 30px;
    position: relative;
    flex-grow: 1; /* Allows content to grow and fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btv-season-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.btv-season-content p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    flex-grow: 1; /* Ensures p takes up space if needed */
}

/* Ensure equal height in grid */
.btv-section .row {
    display: flex;
    flex-wrap: wrap;
}

.btv-section .row > [class*="col-"] {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .btv-section-title h2 {
        font-size: 2rem;
    }
    .btv-section {
        padding: 60px 0;
    }
}