/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.wrapper {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding: 64px 30px;
}

@media all and (min-width: 768px) {
	.wrapper {
		padding: 100px 40px;
	}
}

@media (min-width: 768px) {
	.grid-wrap {
	  display: grid;
	  grid-template-columns: repeat(8, minmax(0, 1fr));
	  gap: 2rem;
	}
}
@media (min-width: 1280px) {
	.grid-wrap {
	  grid-template-columns: repeat(12, minmax(0, 1fr));
	  /*column-gap: 2rem;*/
	 	gap: 3rem;
	}
}

.grid-item {
	grid-column: span 4 / span 4;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.grid-item {
		margin-bottom: 0;
	}
}

.hotel-item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
}
.hotel-item__title {
	font-weight: 600;
}
.hotel-item__summary {

}
.hotel-item__img {
	margin-top: auto;
	margin-bottom: 1.5rem;
}
.hotel-item__img img {
	border-radius: 8px;
}
.hotel-item__btn-wrap {
	text-align: center;
}
.hotel-item__btn {

}
.btn {
	display: inline-flex;
	align-items: center;
	column-gap: 0.5em;
	font-weight: bold;
	padding: 15px 20px;
	border-radius: 10px;
	background-color: var(--accent);
	color: var(--base-3);
	text-decoration: none;
}
.btn:hover {
	background-color: var(--accent-2);
	color: var(--base-3);
}

.hotel-title {
	font-weight: 700;
	font-size: 45px;
	line-height: 1em;
}

@media (min-width: 768px) {
	.hotel-title {
		 font-size: 60px;
	}
}

@media (min-width: 1024px) {
	.hotel-title {
		font-size: 80px;
	}
}

.hotel-info {
	margin-bottom: 2rem;
}

.hotel-event {
	display: inline-flex;
	flex-wrap: nowrap;
	margin-bottom: 32px;
	padding: 16px 24px;
	border-radius: 8px;
	background: var(--accent-3);
	font-weight: 600;
	font-size: 22px;
	font-style: italic;
}
.hotel-event__icon {
	display: none;
	width: 24px;
	margin-right: 16px;
}
@media (min-width: 768px) {
	.hotel-event__icon {
		display: block;
	}
}


/*
 * splide.js Library styles + overrides for CSS for this library
 */
.carousel {
	margin-bottom: 40px;
}
.carousel__main {
  margin-bottom: 8px;
}

.splide__track {
	border-radius: 10px;
}

.splide li {
  padding-left: 0;
}
.splide li::before {
  display: hidden;
}

.splide__slide img { 
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: none;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}
.splide__track--nav > .splide__list > .splide__slide.is-active::before {
	/*
  @apply rounded-none;
  @apply bg-transparent;
	 */
	position: absolute;
	content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-width: 4px;
  border-color: var(--accent);
  background: transparent;
}

.splide__video__play {
  /*@apply !bg-transparent;*/
  width: 80px;
  height: 80px;
  border-style: solid;
  border-width: 6px;
  border-color: white;
}
.splide__video__play::after {
  border-color: transparent transparent transparent #fff !important;
  border-width: 19px 0 19px 27px !important;
}

label {
 font-weight: 600;
}

input[type="text"], 
input[type="email"], 
input[type="url"], 
input[type="password"], 
input[type="search"], 
input[type="tel"], 
input[type="number"], 
textarea, 
select {
	border-radius: 4px;
}

.title-underlined {
	font-weight: 700; 
	border-bottom: 1px solid gray; 
	padding-bottom: 16px; 
	margin-bottom: 24px; 
	text-transform: uppercase;
}

.pt-0 {
	padding-top: 0;
}