/*
 Theme Name:   Joyn Theme
 Template:     foxiz
 Version:      1.0.0
 Description:  This is a child theme of Joyn Theme.
 Author:       Joyn
*/

/* ここに子テーマ用のCSSを追加します */

/* The Events Calendar CSS */
.tribe-events .datepicker .tribe-events .datepicker .dow {
	color: white !important;
}

tribe-events .datepicker .day, .tribe-events .datepicker .dow {
	color: white !important;
}

.datepicker-switch {
	color: white !important;
}

.tribe-events .datepicker .datepicker-switch:hover {
	color: var(--tec-color-accent-secondary-hover) !important;
}


.tribe-events-calendar-latest-past__event-date-tag-month {
	font-size:20px !important;
	color:black !important;
}
.tribe-events-calendar-latest-past__event-date-tag-daynum {
    font-size:50px !important;
}
/* .tribe-events-calendar-latest-past__event-description.tribe-common-b2.tribe-common-a11y-hidden {
    display: none !important;
} */

.featured-tour-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
	
}

.featured-tour-card {
	position: relative;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.1em; /* make text slightly larger */
}

.featured-tour-card .image-wrapper img {
    width: 100%;
    height: 350px;
}

.featured-tour-card .tour-content {
    padding: 20px;
}

.featured-tour-card .price-and-button .price {
    font-size: 1.4em;
    font-weight: bold;
}

.featured-tour-card .view-trip-btn {
    padding: 10px 16px;
    background-color: #665FFF;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
}

.featured-tour-card .view-trip-btn:hover {
    background-color: #5b55e5;
}



.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tour-card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    text-align: center;
    position: relative;
}

.tour-card .image-wrapper img {
    width: 100%;
    height: 250px;
}

.discount-badge {
    background: #665FFF;
    color: #fff;
    padding: 8px 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    border-radius: 4px;

}

.tour-content {
    padding: 15px;
}

.tour-content h3 {
    margin: 10px 0;
    font-size: 18px;
}

.details span {
    display: inline-block;
    margin: 0 5px;
    font-size: 14px;
}

.price {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.view-trip-btn {
    padding: 8px 16px;
    background: #665FFF;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.view-trip-btn:hover {
    background: #5b55e5;
}
.price-and-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
	gap:40px;

}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}


@media (max-width: 768px) {
	.featured-tour-grid {
		grid-template-columns: 1fr;
	}
	
	.featured-tour-card .price{
		font-size: 18px !important; /* normalize font size */
	}

	.view-trip-btn {
		padding: 8px 16px !important;
	}

	
}







