/* ================= HERO ================= */

.onedaytour-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../img/onedaytour.jpg') center/cover no-repeat;
}

.onedaytour-hero__overlay {
    position: absolute;
    inset: 0;
		background:
		radial-gradient(
				circle at 85% 15%,
				rgba(255, 215, 0, 0.25),
				rgba(255, 215, 0, 0.15) 20%,
				rgba(255, 215, 0, 0.05) 40%,
				transparent 60%
		),
		linear-gradient(
				to bottom,
				rgba(240, 247, 250, 0.45),
				rgba(240, 247, 250, 0.30)
		);
}

.onedaytour-hero__content {
    position: relative;
    z-index: 2;
    max-width: 890px;
}

.onedaytour-hero h1 {
    color: var(--sg-text-headline);
    margin-bottom: 16px;
}

.onedaytour-hero p {
    color: var(--sg-frame-text);
    margin-bottom: 32px;
    font-weight: 500;
    text-shadow: 0 4px 12px rgba(0, 51, 78, 0.25);
		opacity: 0.75;
}

/* ================= SEARCH ================= */

.onedaytour-hero__search {
    background: linear-gradient(
        135deg,
        var(--sg-block-grad-start),
        var(--sg-block-grad-end)
    );
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 86, 130, 0.15);
}

.tour-search-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tour-search-form select,
.tour-search-form button {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
		height: 44px;
}

.tour-search-form button {
    background: var(--sg-accent-primary);
    color: #00334E;
    cursor: pointer;
}

/* ================= SECTIONS ================= */

.onedaytour-section {
    padding: 80px 0;
}

.onedaytour-section h2 {
    color: var(--sg-text-headline);
    margin-bottom: 32px;
}

/* ================= GRID ================= */

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ================= CARD ================= */

.tour-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 86, 130, 0.08);
    display: flex;
    flex-direction: column;
}

.tour-card__image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.tour-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-card__meta {
    font-size: 14px;
    color: var(--sg-text-subheadline);
}

.tour-card__price {
    margin-top: auto;
    font-weight: 600;
    color: var(--sg-text-headline);
}