.block {
	container-name: block;
	container-type: inline-size;
	width: 100%;
}

.awards-title {
	background-image: url('/wp-content/uploads/2025/08/award_bg.png');
	background-color: var(--color-primary);

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	background-blend-mode: luminosity;
}

.no-decoration {
	text-decoration: none !important;
	color: var(--color-primary);
}

/* overlay */
/* circular transparent gradient */

.beer-gradient {
	position: relative;
}

.beer-gradient::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
	z-index: 0;
}

/* testimonial */

.testimonial-section {
	background-image: url('/wp-content/uploads/2025/10/testimonial_bg-scaled.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.breakout {
	position: relative;
	z-index: 2;
}

.breakout .breakout-content {
	background-color: var(--color-white);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius-blocks);
	padding: var(--padding-rows);
	position: relative;
	left: 0;
	right: 0;
	translate: 0 -50%;
}

.beer-slide a {
	display: block;
	position: relative;
	padding: 2rem 0;
}

.beer-composite {
	position: relative;
}

.beer-slide a img.beer-can,
.beer-composite img.beer-can {
	position: relative;
	z-index: 3;
	transition: 0.2s ease-in-out;
}

.beer-slide a img.beer-shadow,
.beer-composite img.beer-shadow {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transition: 0.2s ease-in-out;
}

.beer-slide a img.beer-shadow {
	top: 2rem;
}

.beer-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 30rem auto auto;
	grid-template-areas:
		'title title'
		'image image'
		'taste details'
		'desc desc';
	gap: 2rem;
	justify-content: stretch;
	justify-items: stretch;
	align-content: center;
	align-items: center;
	position: relative;
	text-align: center;
}

.beer-banner.has-form {
	grid-template-rows: auto 30rem auto auto auto;
	grid-template-areas:
		'title title'
		'image image'
		'taste details'
		'desc desc'
		'form form';
}

.beer-banner .beer-description-container {
	grid-area: desc;
}

.beer-banner .beer-details-container {
	grid-area: details;
}

.beer-banner .beer-form-container {
	grid-area: form;
	align-self: stretch;
	padding: var(--padding-blocks);
	container-type: inline-size;
	container-name: beer-form;
}

.beer-banner .beer-image-container {
	grid-area: image;
	position: relative;
	z-index: 1;
	height: 100%;
}

.beer-banner .beer-taste-container {
	grid-area: taste;
}

.beer-taste-container img {
	width: 100%;
	height: auto;
}

.beer-banner .beer-title-container {
	grid-area: title;
}

.beer-banner .beer-description-container,
.beer-banner .beer-details-container,
.beer-banner .beer-form-container,
.beer-banner .beer-taste-container,
.beer-banner .beer-title-container {
	position: relative;
	z-index: 2;
}

.beer-banner .beer-composite {
	height: 110%;
	margin-bottom: -10%;
	z-index: 2;
}

.list-image-container .dot-pattern {
	position: absolute;
	top: 50%;
	left: 72%;
	translate: -50% -50%;
	width: 100%;
	max-width: 40rem;
	height: auto;
}

.beer-banner .dot-pattern {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
	width: 100%;
	max-width: 40rem;
	height: auto;
}

.beer-banner img.beer-can,
.beer-banner img.beer-shadow {
	height: 100%;
	max-width: none;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}

.beer-banner .beer-form {
	display: grid;
	grid-template-columns: max-content 1fr;
	row-gap: 1rem;
	column-gap: 1rem;
	justify-content: space-between;
	justify-items: stretch;
	align-content: center;
	align-items: center;
}

.beer-banner .beer-form > * {
	grid-column: 1 / -1;
}

.beer-banner .beer-form-field {
	display: grid;
	grid-template-columns: subgrid;
	row-gap: 1rem;
	column-gap: 1rem;
}

.beer-banner .beer-form-field input,
.beer-banner .beer-form-field select,
.beer-banner .beer-form-total div {
	background-color: #001b28;
	color: var(--color-white);
}

.beer-banner .beer-form-field select option {
	background-color: white;
	color: black;
}

.beer-banner .beer-form .btn {
	width: 100%;
}

.beer-banner .beer-form-total div {
	padding: 0.5em 1.5em;
	text-align: left !important;
}

.list-image-container {
	position: relative;
}

@media (min-width: 576px) {
	.beer-banner {
		grid-template-columns: 20rem 1fr;
		grid-template-rows: auto 30rem auto auto;
		grid-template-areas:
			'title title'
			'image image'
			'taste desc'
			'details details';
	}

	.beer-banner.has-form {
		grid-template-rows: auto 30rem auto auto auto;
		grid-template-areas:
			'title title'
			'image image'
			'taste desc'
			'details details'
			'form form';
	}

	.beer-banner .beer-description-container {
		text-align: left;
	}
}

@media (min-width: 768px) {
	.beer-banner {
		grid-template-columns: 1fr 20rem 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			'image title title'
			'image details details'
			'image taste desc';
	}


	.beer-banner.has-form {
		grid-template-rows: auto auto auto auto;
		grid-template-areas:
			'image title title'
			'image details details'
			'image taste desc'
			'form form form';
	}

	.beer-banner .beer-form-container {
		margin-top: 4rem;
	}

	.beer-banner .beer-title-container {
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.beer-banner {
		grid-template-columns: 1fr 20rem 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			'image title title'
			'image taste details'
			'image taste desc';
		column-gap: 3rem;
	}

	.beer-banner {
		grid-template-rows: auto auto auto auto;
		grid-template-areas:
			'image title title'
			'image taste details'
			'image taste desc'
			'form form form';
	}

	.beer-banner .beer-description-container {
		align-self: start;
	}

	.beer-banner .beer-details-container {
		align-self: end;
	}
}

@media (min-width: 1280px) {
	.beer-banner {
		grid-template-columns: 1fr 20rem 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			'image title title'
			'image taste details'
			'image taste desc';
		column-gap: 4rem;
	}

	.beer-banner.has-form {
		grid-template-columns: 1fr 20rem 1fr minmax(auto, 25rem);
		grid-template-areas:
			'image title title form'
			'image taste details form'
			'image taste desc form';
	}
}

@media (min-width: 1540px) {
	.beer-banner {
		column-gap: 5rem;
	}

	.beer-banner .beer-form-container {
		margin-top: 0;
	}
}

@container beer-form (min-width: 600px) {
	.beer-banner .beer-form {
		grid-template-columns: repeat(3, 1fr);
		column-gap: 3rem;
		row-gap: 1.5rem;
	}

	.beer-banner .beer-form-field {
		grid-template-columns: max-content 1fr;
		grid-column: span 1;
	}
}

/* 
    Hover 
*/
@media (-moz-touch-enabled: 0), (pointer: fine) {
	.beer-slide a:hover img.beer-can {
		translate: 0 -1.5rem;
	}

	.beer-slide a:hover img.beer-shadow {
		opacity: 0.5;
		filter: blur(0.3rem);
	}

	.beer-composite:hover img.beer-can {
		translate: 0 calc(0rem - 5%);
	}

	.beer-composite:hover img.beer-shadow {
		opacity: 0.5;
		filter: blur(0.3rem);
	}

	.beer-banner .beer-composite:hover img.beer-can {
		translate: -50% -55%;
	}
}

.beer-details-container {
	container-type: inline-size;
	container-name: beer-details;
}

.beer-details {
	--beer-detail-border-color: white;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	place-content: stretch;
	place-items: stretch;
	border: 1px solid var(--beer-detail-border-color);
}

.beer-detail {
	padding: 1rem;
	border: 1px solid var(--beer-detail-border-color);
}

@container beer-details (min-width: 320px) {
	.beer-details {
		grid-template-columns: repeat(3, 1fr);
	}
}

.booking-widget {
	container-type: inline-size;
	container-name: booking-widget;
}

.booking-widget-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding-top: 1.5rem;
}

.booking-field-submit button {
	width: 100% !important;
}

.booking-field {
	width: 100%;
}

.booking-field:not(.booking-field-submit) .full-width-field {
	position: relative;
}

.booking-field:not(.booking-field-submit) .full-width-field input[type='date']::-webkit-calendar-picker-indicator {
	opacity: 0;
}

.booking-field:not(.booking-field-submit) .full-width-field i {
	display: block;
	position: absolute;
	top: 50%;
	right: var(--form-field-padding-x);
	translate: 0 -50%;
	width: 2.4rem;
	pointer-events: none;
}

@container booking-widget (min-width: 750px) {
	.booking-widget-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.booking-field-submit {
		grid-column: span 1;
	}
}

@container booking-widget (min-width: 900px) {
	.booking-widget-grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap: 2rem;
	}
}

@container booking-widget (min-width: 600px) {
	.booking-widget-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.booking-field-submit {
		grid-column: span 3;
	}
}

@container booking-widget (min-width: 750px) {
	.booking-widget-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.booking-field-submit {
		grid-column: span 1;
	}
}

@container booking-widget (min-width: 900px) {
	.booking-widget-grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap: 2rem;
	}

	.booking-field:not(.booking-field-submit) .full-width-field {
		position: relative;
	}

	.booking-field:not(.booking-field-submit) .full-width-field input[type='date']::-webkit-calendar-picker-indicator {
		opacity: 0;
	}

	.booking-field:not(.booking-field-submit) .full-width-field i {
		display: block;
		position: absolute;
		top: 50%;
		right: var(--form-field-padding-x);
		translate: 0 -50%;
		width: 2.4rem;
		pointer-events: none;
	}
}

.availability-items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;

	container-type: inline-size;
	container-name: availability;
}

.available-item {
	display: grid;
	grid-template-columns: 1fr;
	place-content: center;
	place-items: center;
	text-align: center;
	gap: 0;
}

.available-item-text {
	padding: var(--padding-blocks);
}

.available-item-image {
	padding: 0 var(--padding-blocks) calc(var(--padding-blocks) / 2);
}

.available-item-image img {
	max-width: 20rem;
}

@container availability (min-width: 400px) {
	.available-item {
		grid-template-columns: 1fr 1fr;
		text-align: right;
		column-gap: 0.5rem;
		grid-auto-rows: 1fr;
	}

	.available-item-text {
		justify-self: end;
		padding-right: 0;
	}

	.available-item-image {
		justify-self: start;
		padding-left: 0;
		padding-bottom: 0;
	}

	.available-item-image img {
		margin-top: -1rem;
	}
}

.awards-section {
	position: relative;
}

.awards-section::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	width: calc(100% + 1px);
	height: 50%;
	background-color: var(--color-light-grey);
	z-index: 1;
}

.awards-section > .container {
	position: relative;
	z-index: 2;
}

.awards-container {
	container-type: inline-size;
	container-name: awards;
}

.awards {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	flex-direction: column;
	text-align: center;
	flex-wrap: nowrap;
	gap: 0;
}

.awards-title {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	min-height: 5rem;
}

.awards-list {
	padding: var(--padding-blocks);
	overflow: hidden;
}

.award {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2rem;
}

.award-text strong,
.award-text span {
	display: block;
}

.award-badge {
	max-width: 6rem;
}

@container awards (min-width: 480px) {
	.awards {
		flex-direction: row;
	}

	.awards-title {
		width: clamp(18rem, 20%, 30rem);
	}

	.awards-list {
		width: calc(100% - clamp(18rem, 20%, 30rem));
	}
}

@container awards (min-width: 680px) {
	.award {
		flex-direction: row;
	}

	.award-text strong,
	.award-text span {
		display: inline;
	}
}

#gform_1 #gform_submit_button_1 {
	background-color: var(--color-primary);
	color: var(--color-primary-contrast);
}

#gform_1 #gform_submit_button_1:hover {
	background-color: var(--color-primary-alt);
	color: var(--color-primary-contrast);
}

#gform_1 .gfield_description {
	color: var(--color-primary);
}