/**
 * Porta 30 - Shortcodes Styles
 *
 * Consolidated styles for all frontend shortcodes.
 *
 * @package Porta30
 */

/* ==========================================================================
   Sticky Navigation Header
   ========================================================================== */

.p30_header_section {
	position: relative;
	width: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
}

.p30_header_section.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding:.5rem 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Logo swap when sticky - Desktop only */
.into-nav-logo-default {
	display: block;
}

.into-nav-logo-sticky {
	display: none;
}

/* Desktop: swap logos when sticky */
@media (min-width: 768px) {
	.p30_header_section.sticky .into-nav-logo-default {
		display: none;
	}

	.p30_header_section.sticky .into-nav-logo-sticky {
		display: block;
	}
}

/* Shrink logo when sticky */
.p30_header_section.sticky .into-nav-logo img {
	max-height: 50px;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce padding when sticky */
.p30_header_section.sticky .into-nav-inner {
	padding-top: 0px;
	padding-bottom: 0px;
	transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Change menu items to black when sticky - Desktop only */
@media (min-width: 768px) {
	.p30_header_section.sticky .into-nav-left a,
	.p30_header_section.sticky .into-nav-right a {
		color: #000;
		transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

/* Mobile adjustments */
@media (max-width: 767px) {
	/* Always sticky on mobile, no animation */
	.p30_header_section {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	}

	/* Disable animation on mobile */
	.p30_header_section.sticky {
		animation: none;
	}

	.p30_header_section.sticky .into-nav-logo img {
		max-height: 40px;
	}

	.p30_header_section.sticky .into-nav-inner {
		padding-top: 8px;
		padding-bottom: 8px;
	}
}

/* ==========================================================================
   Video Player
   ========================================================================== */

.porta30-video-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	background: #000;
	overflow: hidden;
	max-height: 1080px;
	min-height: 200px;
	aspect-ratio: 16/9;
}

.porta30-video-placeholder {
	position: relative;
	width: 100%;
	min-height: 200px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.porta30-video-thumbnail {
	width: 100%;
	height: auto;
	display: block;
	min-height: 200px;
	object-fit: cover;
}

.porta30-video-wrapper {
	position: relative;
	width: 100%;
	min-height: 200px;
}

.porta30-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 10;
}

.porta30-play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
	opacity: 0.9;
}

.porta30-play-button:focus {
	outline: 2px solid rgba(255, 255, 255, 0.8);
	outline-offset: 4px;
}

.porta30-home-video {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer;
	min-height: 200px;
	max-height:1080px;
}

.porta30-play-button.loading {
	opacity: 0.6;
	pointer-events: none;
}

.porta30-play-button.loading svg {
	animation: porta30-spin 1s linear infinite;
}

@keyframes porta30-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   Guest Reviews Carousel
   ========================================================================== */

.porta30-reviews-carousel-header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 5rem;
}

.porta30-reviews-carousel-header h4 {
	font-size: 1.875rem;
	font-family: var(--playfair-display);
	color: #4A4A4A;
	font-weight: 500;
	margin: 0;
}

.porta30-reviews-carousel {
	position: relative;
	max-width: calc(1220px + 120px);
	margin: 0 auto;
	overflow: hidden;
	padding: 0 60px;
}

.carousel-wrapper {
	overflow: hidden;
	width: 1220px;
	margin: 0 auto;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.carousel-quote {
	font-size: 8rem;
	color: #4A4A4A;
	margin-bottom: 12px;
	line-height: 5rem;
	font-family: var(--playfair-display);
}

.carousel-card {
	background: #F0F0F0;
	border-radius: 8px;
	padding: 40px 34px 32px 34px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 280px;
}

.carousel-text {
	font-size: 1.5rem;
	color: #4A4A4A;
	flex: 1;
	margin-bottom: 80px;
	line-height: 1.6;
	font-family: var(--playfair-display);
}

.carousel-meta {
	font-family: var(--lato);
	color: #4A4A4A;
	width: 100%;
	margin-top: auto;
}

.carousel-name {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	margin-right: 6px;
}

.carousel-date {
	font-size: 0.7rem;
	display: block;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 1.5px solid #4A4A4A;
	width: 40px;
	height: 40px;
	border-radius: 2px;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	z-index: 10;
	transition: all 0.3s ease;
	user-select: none;
	color: #4A4A4A;
}

.carousel-arrow:hover {
	background: #4A4A4A;
	color: white;
	transform: translateY(-50%);
}

.carousel-arrow-left {
	left: 0;
}

.carousel-arrow-right {
	right: 0;
}

.carousel-paused .carousel-track {
	animation-play-state: paused;
}

/* ==========================================================================
   Vertical Menu
   ========================================================================== */

.porta30-vertical-menu {
	font-family: var(--lato, Arial, sans-serif);
}

.porta30-vertical-menu .vertical-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.porta30-vertical-menu .vertical-menu-list li {
	margin: 0;
	padding: 0;
}

.porta30-vertical-menu .vertical-menu-list a {
	display: block;
	color: #4A4A4A;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	padding: 8px 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.porta30-vertical-menu .vertical-menu-list a:hover {
	color: #000;
	border-bottom-color: #4A4A4A;
}

.porta30-vertical-menu .vertical-menu-list a:focus {
	outline: 2px solid #0071c1;
	outline-offset: 2px;
}

.porta30-vertical-menu .vertical-menu-list .current-menu-item > a,
.porta30-vertical-menu .vertical-menu-list .current_page_item > a {
	color: #000;
	font-weight: 600;
}

.porta30-vertical-menu .vertical-menu-list .sub-menu {
	list-style: none;
	margin: 8px 0 0 0;
	padding: 0 0 0 20px;
	border-left: 2px solid #f0f0f0;
}

.porta30-vertical-menu .vertical-menu-list .sub-menu li {
	margin: 4px 0;
}

.porta30-vertical-menu .vertical-menu-list .sub-menu a {
	font-size: 0.9rem;
	color: #666;
	padding: 4px 0;
}

.porta30-vertical-menu .vertical-menu-list .sub-menu a:hover {
	color: #4A4A4A;
}

.porta30-vertical-menu.compact .vertical-menu-list {
	gap: 6px;
}

.porta30-vertical-menu.compact .vertical-menu-list a {
	padding: 4px 0;
	font-size: 0.9rem;
}

/* ==========================================================================
   Footer Menu
   ========================================================================== */

.porta30-footer-menu {
	font-family: var(--lato, Arial, sans-serif);
}

.porta30-footer-menu .footer-menu-title {
	color: #4A4A4A;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 16px 0;
	padding: 0;
}

.porta30-footer-menu .footer-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.porta30-footer-menu .footer-menu-list li {
	margin: 0;
	padding: 0;
}

.porta30-footer-menu .footer-menu-list a {
	display: block;
	color: #666;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.5;
	padding: 2px 0;
	transition: color 0.3s ease;
}

.porta30-footer-menu .footer-menu-list a:hover {
	color: #4A4A4A;
}

.porta30-footer-menu .footer-menu-list a:focus {
	outline: 2px solid #0071c1;
	outline-offset: 2px;
}

.porta30-footer-menu .footer-menu-list .current-menu-item > a,
.porta30-footer-menu .footer-menu-list .current_page_item > a {
	color: #4A4A4A;
	font-weight: 500;
}

/* ==========================================================================
   Slideshow
   ========================================================================== */

.porta30-slideshow {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

/* Aspect Ratios - Desktop */
.porta30-slideshow--desktop-fullscreen {
	height: 100vh;
	height: 100dvh;
}

.porta30-slideshow--desktop-ratio {
	aspect-ratio: 16 / 9;
	max-height: 100vh;
}

/* Slides Container */
.porta30-slideshow__slides {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Individual Slide */
.porta30-slideshow__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	z-index: 1;
	/* GPU acceleration */
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	will-change: opacity;
}

.porta30-slideshow__slide--active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Slide Transition - Fade (default) */
.porta30-slideshow--transition-fade .porta30-slideshow__slide {
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Slide Transition - Slide */
.porta30-slideshow--transition-slide .porta30-slideshow__slides {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	/* GPU acceleration for slide transitions */
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	will-change: transform;
}

.porta30-slideshow--transition-slide .porta30-slideshow__slide {
	position: relative;
	flex: 0 0 100%;
	opacity: 1;
	visibility: visible;
	will-change: auto;
}

/* Media Elements */
.porta30-slideshow__image,
.porta30-slideshow__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.porta30-slideshow__video {
	background: #000;
}

/* Gradient Overlay */
.porta30-slideshow__gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	pointer-events: none;
	/* GPU acceleration */
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

/* Overlay */
.porta30-slideshow__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	pointer-events: none;
	/* GPU acceleration for per-slide overlays */
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.porta30-slideshow__overlay-content {
	text-align: center;
	color: #fff;
	width: 48.75rem;
  max-width: 90vw;
	pointer-events: auto;
}

.porta30-slideshow__pre-title {
  display: block;
	font-family: var(--lato, Arial, sans-serif);
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 3.125rem;
}

.porta30-slideshow__pre-title--small {
	font-size: 1rem;
}

.porta30-slideshow__title {
  display: block;
	font-family: var(--playfair-display, Georgia, serif);
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Title sizes based on heading tag - Desktop */
.porta30-slideshow__title.porta30-slideshow__title--h1 {
	font-size: 3.125rem;
}

.porta30-slideshow__title.porta30-slideshow__title--h2 {
	font-size: 2.5rem;
}

.porta30-slideshow__title.porta30-slideshow__title--h3 {
	font-size: 2.25rem;
}

.porta30-slideshow__subtitle {
  display:block;
	font-family: var(--lato, Arial, sans-serif);
	font-size: 1.25rem;
	font-weight: 300;
	margin-top: 3.125rem;
}

.porta30-slideshow__subtitle--small {
	font-size: 1rem;
}

.porta30-slideshow__cta {
    font-size: 0.75rem;
    display: inline-block;
    color: var(--txt-light);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding:0.5rem 1rem;
    border-radius: 5px;
    border: 1.5px solid var(--txt-light);
    transition: all 200ms ease;
    margin-top:2.5rem;
    /* GPU acceleration */
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.porta30-slideshow__cta:hover {
	background:var(--txt-light);
	color: var(--txt-dark);
}

.porta30-slideshow__cta:focus {
	outline: 1.5px solid var(--txt-light);
	outline-offset: 2px;
}

/* Navigation Arrows */
.porta30-slideshow__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	background: transparent;
	border: 1px solid var(--txt-light);
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border-radius: 5px;
	padding: 0;
	/* GPU acceleration */
	backface-visibility: hidden;
	will-change: transform;
}

.porta30-slideshow__arrow:hover {
	border-color: rgba(255, 255, 255, 1);
	background: rgba(255, 255, 255, 0.1);
}

.porta30-slideshow__arrow:focus {
	outline: 2px solid rgba(255, 255, 255, 0.5);
	outline-offset: 2px;
}

.porta30-slideshow__arrow svg {
	fill: var(--txt-light);
}

.porta30-slideshow__arrow:hover svg {
	stroke: rgba(255, 255, 255, 1);
}

.porta30-slideshow__arrow--prev {
	left: 3.75rem;
}

.porta30-slideshow__arrow--next {
	right: 3.75rem;
}

/* Desktop arrow visibility */
.porta30-slideshow[data-arrows-desktop="false"] .porta30-slideshow__arrow {
	display: none;
}

/* Navigation Dots */
.porta30-slideshow__dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	gap: 12px;
	padding: 10px;
	opacity: .6;
}

.porta30-slideshow__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	/* GPU acceleration */
	backface-visibility: hidden;
}

.porta30-slideshow__dot:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.3);
}

.porta30-slideshow__dot:focus {
	outline: 1px solid #fff;
	outline-offset: 2px;
}

.porta30-slideshow__dot--active {
	background: #fff;
	border-color: #fff;
}

/* Desktop dots visibility */
.porta30-slideshow[data-dots-desktop="false"] .porta30-slideshow__dots {
	display: none;
}

/* ==========================================================================
   Responsive - Slideshow
   ========================================================================== */

/* Tablet */
@media (max-width: 1023px) {
	.porta30-slideshow__title {
		font-size: 2.75rem;
	}

	.porta30-slideshow__subtitle {
		font-size: 1.125rem;
	}

}

/* Mobile */
@media (max-width: 767px) {
	/* Aspect Ratios - Mobile Override */
	.porta30-slideshow--mobile-fullscreen {
		height: 100vh;
		height: 100dvh;
		aspect-ratio: unset;
		max-height: none;
	}

	.porta30-slideshow--mobile-ratio {
	  height: 37.5rem;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
	}

	.porta30-slideshow__pre-title {
		font-size: 1.25rem;
	}

	.porta30-slideshow__pre-title--small {
		font-size: 1rem;
	}

	/* Title sizes based on heading tag - Mobile */
	.porta30-slideshow__title.porta30-slideshow__title--h1 {
		font-size: 2.25rem;
	}

	.porta30-slideshow__title.porta30-slideshow__title--h2 {
		font-size: 1.875rem;
	}

	.porta30-slideshow__title.porta30-slideshow__title--h3 {
		font-size: 1.25rem;

	}

	.porta30-slideshow__subtitle {
		font-size: 1.25rem;
	}

	.porta30-slideshow__subtitle--small {
		font-size: 1rem;
	}


	/* Mobile Arrow Visibility */
	.porta30-slideshow[data-arrows-mobile="false"] .porta30-slideshow__arrow {
		display: none;
	}

	.porta30-slideshow[data-arrows-mobile="true"] .porta30-slideshow__arrow {
		display: flex;
	}


	.porta30-slideshow__arrow--prev {
		left: 10px;
		top: auto;
    bottom: 20%;
	}

	.porta30-slideshow__arrow--next {
		right: 10px;
		top: auto;
    bottom: 20%;
	}

	.porta30-slideshow__arrow svg {
		width: 18px;
		height: 18px;
	}

	/* Mobile Dots Visibility */
	.porta30-slideshow[data-dots-mobile="false"] .porta30-slideshow__dots {
		display: none;
	}

	.porta30-slideshow[data-dots-mobile="true"] .porta30-slideshow__dots {
		display: flex;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.porta30-slideshow__title {
		font-size: 1.75rem;
	}

	.porta30-slideshow__subtitle {
		font-size: 0.9rem;
	}
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
	.porta30-slideshow__arrow {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}

	.porta30-slideshow__dot {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}
}

/* ==========================================================================
   Responsive - Video Player
   ========================================================================== */

@media (max-width: 768px) {
	.porta30-video-container {
		min-height: 150px;
	}

	.porta30-video-placeholder,
	.porta30-video-wrapper,
	.porta30-home-video,
	.porta30-video-thumbnail {
		min-height: 150px;
	}

	.porta30-play-button svg {
		width: 60px;
		height: 44px;
	}

	.porta30-play-button {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}

	.porta30-home-video {
		-webkit-tap-highlight-color: transparent;
	}
}

@media (max-width: 480px) {
	.porta30-video-container,
	.porta30-video-placeholder,
	.porta30-video-wrapper,
	.porta30-home-video,
	.porta30-video-thumbnail {
		min-height: 120px;
	}
}

/* ==========================================================================
   Responsive - Carousel
   ========================================================================== */

/* Desktop - exactly 3 cards */
@media (min-width: 1024px) {
	.carousel-wrapper {
		overflow: hidden;
		width: 100%;
	}

	.carousel-card {
		flex: 0 0 calc(33.333% - 13.33px);
		margin: 0 20px 0 0;
	}

	.carousel-card:last-child {
		margin-right: 0;
	}
}

/* Tablet - 2 cards */
@media (max-width: 1023px) and (min-width: 768px) {
	.carousel-card {
		border-radius: 5px;
		flex: 0 0 calc(50% - 10px);
		margin: 0 20px 0 0;
		padding: 30px 24px 26px 24px;
		font-size: 16px;
	}

	.carousel-text {
		font-size: 16px;
	}
}

/* Mobile - 1 card with peek */
@media (max-width: 767px) {
	.porta30-reviews-carousel {
		padding: 0 20px;
		margin: 30px auto;
	}

	.carousel-track {
		-webkit-overflow-scrolling: touch;
	}

	.carousel-card {
		border-radius: 5px;
		flex: 0 0 calc(85vw - 24px);
		margin: 0 12px 0 0;
		padding: 26px 20px 22px 20px;
		min-height: 240px;
	}

	.carousel-text {
		font-size: 1.25rem;
	}

	.carousel-quote {
		font-size: 8rem;
	}

	.carousel-arrow {
		display: none;
	}

	/* Vertical Menu */
	.porta30-vertical-menu .vertical-menu-list {
		gap: 8px;
	}

	.porta30-vertical-menu .vertical-menu-list a {
		font-size: 0.95rem;
		padding: 6px 0;
	}

	/* Footer Menu */
	.porta30-footer-menu .footer-menu-title {
		font-size: 1rem;
		margin-bottom: 12px;
	}

	.porta30-footer-menu .footer-menu-list {
		gap: 8px;
	}

	.porta30-footer-menu .footer-menu-list a {
		font-size: 0.9rem;
	}
}

/* ==========================================================================
   Booking Form
   ========================================================================== */

.porta30-booking-form {
	width: 100%;
}

.porta30-booking-form__form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	border-radius: 4px;
}

.porta30-booking-form__fields {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 0;
	flex: 1;
	min-width: 0;
}

.porta30-booking-form__field {
	position: relative;
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.porta30-booking-form__field:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
	background: var(--txt-dark);
}

.porta30-booking-form__label {
	font-family: var(--lato, Arial, sans-serif);
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--txt-dark);
	margin: 0;
}

.porta30-booking-form__input {
	font-family: var(--playfair-display, Georgia, serif);
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--txt-dark);
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.porta30-booking-form__date {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.porta30-booking-form__date-display {
	font-family: var(--playfair-display, Georgia, serif);
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--txt-dark);
	cursor: pointer;
	position: relative;
}

.porta30-booking-form__date-display::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.porta30-booking-form__field--checkin,
.porta30-booking-form__field--checkout {
	cursor: pointer;
}

.porta30-booking-form__select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 24px;
	padding-right: 30px;
}

.porta30-booking-form__select::-ms-expand {
	display: none;
}

.porta30-booking-form__select option {
	font-family: var(--lato, Arial, sans-serif);
	font-size: 1rem;
	padding: 8px 12px;
	background: #fff;
	color: #1a1a1a;
}

.porta30-booking-form__submit {
	font-family: var(--lato, Arial, sans-serif);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt-dark);
	background: transparent;
	border: 1.5px solid var(--txt-dark);
	padding: 20px 40px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 5px;
	white-space: nowrap;
	margin: 20px 30px;
}

.porta30-booking-form__submit:hover:not(:disabled) {
	background: var(--txt-dark);
	color: #fff;
}

.porta30-booking-form__submit:active:not(:disabled) {
	transform: scale(0.98);
}

.porta30-booking-form__submit:disabled {
	cursor: not-allowed;
}

/* Tablet */
@media (max-width: 1023px) {
	.porta30-booking-form__form {
		flex-direction: column;
	}

	.porta30-booking-form__fields {
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.porta30-booking-form__field {
		padding: 15px 20px;
	}

	.porta30-booking-form__field--checkin::after,
	.porta30-booking-form__field--adults::after {
		display: block;
	}

	.porta30-booking-form__field--checkout::after,
	.porta30-booking-form__field--kids::after {
		display: none;
	}

	.porta30-booking-form__date-display,
	.porta30-booking-form__input {
		font-size: 2.5rem;
	}

	.porta30-booking-form__submit {
		width: calc(100% - 60px);
		margin: 20px 30px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.porta30-booking-form__fields {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.porta30-booking-form__field {
		padding: 25px 20px;
		border-bottom: 1px solid var(--txt-dark);
	}

	.porta30-booking-form__field:last-child {
		border-bottom: none;
	}

	.porta30-booking-form__field::after {
		display: none !important;
	}

	.porta30-booking-form__field--adults,
	.porta30-booking-form__field--kids {
		border-bottom: none;
	}

	.porta30-booking-form__field--adults::after {
		display: block !important;
	}

	/* Adults and Kids row */
	.porta30-booking-form__field--adults {
		grid-column: 1;
	}

	.porta30-booking-form__field--kids {
		grid-column: 2;
		border-bottom: 1px solid var(--txt-dark);
	}

	.porta30-booking-form__fields {
		display: grid;
		grid-template-columns: 1fr;
	}

	.porta30-booking-form__field--checkin {
		grid-row: 1;
	}

	.porta30-booking-form__field--checkout {
		grid-row: 2;
	}

	.porta30-booking-form__field--adults,
	.porta30-booking-form__field--kids {
		grid-row: 3;
	}

	.porta30-booking-form__fields {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
	}

	.porta30-booking-form__field--checkin,
	.porta30-booking-form__field--checkout {
		grid-column: 1 / -1;
	}

	.porta30-booking-form__label {
		font-size: 1.25rem;
	}

	.porta30-booking-form__date-display,
	.porta30-booking-form__input {
		font-size: 2.5rem;
	}

	.porta30-booking-form__submit {
		width: calc(100% - 40px);
		margin: 20px 20px;
		padding: 16px 40px;
		font-size: 0.9375rem;
	}
}
