/* Fest Page Hero */
.fest-hero {
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
		url('../images/img/sfbw23_kick-off_BarebottleSalesforcePark-150.jpg') center/cover no-repeat,
		#EEA31B;
	color: white;
	padding: 6rem 0;
	text-align: center;
	margin: 0 -20px 0 -20px;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fest-hero .hero-content {
	max-width: 800px;
	padding: 0 2rem;
}

.fest-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fest-hero .event-date {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #EEA31B;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.fest-hero .hero-summary {
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Two Column Layout */
.fest-two-col {
	display: grid;
	grid-template-columns: 70% 30%;
	gap: 2rem;
	padding: 2rem 1rem;
	max-width: 1400px;
	margin: 0 auto;
}

.fest-main-col {
	background: var(--surface);
	border-radius: 12px;
	padding: 1.5rem;
}

.fest-main-col p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.fest-main-col .btn-tickets {
	display: inline-block;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	margin: 1rem 0;
	text-transform: uppercase;
}

.fest-main-col .btn-tickets:hover {
	background-color: #d99317;
	border-color: #d99317;
	color: white;
}

.fest-main-col .ticket-notice {
	font-size: 18px;
	margin-bottom: 0.5rem;
}

.fest-main-col .weather-notice {
	font-size: 18px;
	font-style: italic;
	color: #666;
	margin-bottom: 0;
}

.fest-main-col a {
	color: var(--primary-color);
	font-weight: 500;
}

.fest-main-col a:hover {
	color: #d99317;
}

/* Sidebar Info Boxes */
.fest-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fest-sidebar .info-box {
	background: var(--surface);
	border-radius: 12px;
	padding: 1.25rem;
	font-size: 18px;
	line-height: 1.6;
}

.fest-sidebar .info-box a {
	color: var(--primary-color);
	font-weight: 500;
}

.fest-sidebar .info-box a:hover {
	color: #d99317;
}

/* Content Sections (below two-col) */
.fest-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1rem 2rem 1rem;
}

.fest-content h2 {
	color: var(--secondary-color);
	border-top: 2px solid var(--primary-color);
	padding-top: 1rem;
	margin: 3rem 0 0.75rem 0;
}

.fest-content p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.fest-content a {
	color: var(--primary-color);
	font-weight: 500;
}

.fest-content a:hover {
	color: #d99317;
}

/* Breweries Logo Grid */
.breweries-grid {
	margin: 2rem 0;
}

@media (min-width: 992px) {
	.breweries-grid .col {
		max-width: 16.667%;
	}
}

.brewery-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	aspect-ratio: 1;
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	text-decoration: none;
	height: 100%;
}

.brewery-logo:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brewery-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.brewery-logo .host-badge {
	position: absolute;
	top: -8px;
	left: -8px;
	background: var(--primary-color);
	color: white;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	transform: rotate(-15deg);
	box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.brewery-logo .no-logo {
	font-size: 12px;
	color: #666;
	text-align: center;
	line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
	.fest-two-col {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.fest-sidebar .key-info {
		position: static;
	}
}

@media (max-width: 768px) {
	.fest-hero {
		padding: 4rem 0;
		min-height: 400px;
	}

	.fest-hero h1 {
		font-size: 2.5rem;
	}

	.fest-hero .event-date {
		font-size: 1.25rem;
	}

}
