/* =================================================================
   Skylounge — standalone page styles
   ================================================================= */

@font-face {
	font-family: 'Dongra Script';
	src: url('../webfonts/DongraScript.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html {
	scroll-behavior: smooth;
}

html, body {
	background: #000;
	color: #fff;
	margin: 0;
}

body.skylounge {
	font-family: var(--font-jakarta, "Plus Jakarta Sans", sans-serif);
}

body.skylounge h1,
body.skylounge h2,
body.skylounge h3,
body.skylounge h4,
body.skylounge h5,
body.skylounge h6 {
	text-transform: none;
}

/* ---------- Header ---------- */

.skylounge-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 32px;
	background: #000;
}

.skylounge-header__back,
.skylounge-header__close {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
}

.skylounge-header__back i,
.skylounge-header__close i {
	font-size: 22px;
	line-height: 1;
}

.skylounge-header__close {
	width: 44px;
	height: 44px;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	color: #000;
}

.skylounge-header__logo img {
	height: 56px;
	display: block;
}

/* ---------- Hero ---------- */

.skylounge-hero {
	position: relative;
	min-height: calc(100vh - 104px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px;
	overflow: hidden;
	color: #D1C0B1;
}

.skylounge-hero,
.skylounge-hero p,
.skylounge-hero h1,
.skylounge-hero h2,
.skylounge-hero h3,
.skylounge-hero h4,
.skylounge-hero h5,
.skylounge-hero h6,
.skylounge-hero a,
.skylounge-hero li {
	color: #D1C0B1;
}

.skylounge-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.skylounge-hero__media img,
.skylounge-hero__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* YouTube background iframe — always fully covers the hero by
   scaling beyond the smaller axis. pointer-events disabled so it
   stays a passive backdrop. */
.skylounge-hero__yt {
	position: absolute;
	top: 50%;
	left: 50%;
	/* Always 16:9, scaled up so the iframe covers the hero. The
	   larger axis is picked with max() so the other axis follows
	   automatically — eliminates the black letterbox bars. */
	width: max(100vw, 177.78vh);
	height: max(56.25vw, 100vh);
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.skylounge-hero__poster {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.skylounge-hero__yt {
	z-index: 1;
}

.skylounge-hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.6));
	pointer-events: none;
}

.skylounge-hero__inner {
	position: relative;
	z-index: 3;
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}

/* Placeholder slot for the SVG logo (star + SKY LOUNGE + AMSTERDAM).
   Replace .skylounge-hero__logo content with an <img> once the logo
   artwork is delivered. */
.skylounge-hero__logo {
	min-height: 220px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.skylounge-hero__logo img,
.skylounge-hero__logo svg {
	max-width: 100%;
	height: auto;
	display: block;
}

.skylounge-hero__tagline {
	font-family: 'Dongra Script', cursive;
	font-weight: 400;
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.2;
	margin: 8px 0 32px;
}

.skylounge-hero__body {
	max-width: 620px;
	margin: 0 auto 40px;
}

.skylounge-hero__body,
.skylounge-hero__body p {
	font-size: 16px;
	line-height: 1.65;
}

.skylounge-hero__body p {
	margin: 0 0 12px;
}

.skylounge-hero__body p:last-child {
	margin-bottom: 0;
}

.skylounge-hero .button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1.5px solid #D1C0B1;
	border-radius: 100px;
	padding: 14px 32px;
	color: #D1C0B1;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.skylounge-hero .button:hover {
	background: #D1C0B1;
	color: #000;
}

.skylounge-hero .button i {
	font-size: 20px;
	line-height: 1;
}

/* ---------- Quote band ---------- */

.skylounge-quote {
	background-color: #775520;
	padding: 64px 24px;
	text-align: center;
}

.skylounge-quote__text {
	font-family: 'Dongra Script', cursive;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.15;
	color: #D1C0B1;
	margin: 0 auto;
	max-width: 960px;
}

@media (max-width: 700px) {
	.skylounge-quote { padding: 48px 20px; }
}

/* ---------- Private Club section ---------- */

.skylounge-private {
	position: relative;
	padding: 160px 24px 180px;
	background-color: #271407;
	color: #D1C0B1;
}

.skylounge-private.has-stripes {
	background-image: url('../img/skylounge-stripes.png');
	background-repeat: repeat;
}

.skylounge-private__inner {
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
}

.skylounge-private__icon {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.skylounge-private__icon img,
.skylounge-private__icon svg {
	height: 56px;
	width: auto;
	display: block;
}

.skylounge-private,
.skylounge-private h2,
.skylounge-private p,
.skylounge-private figcaption {
	color: #D1C0B1;
}

.skylounge-private__title {
	font-family: 'Dongra Script', cursive;
	font-weight: 400;
	font-size: clamp(40px, 5.4vw, 68px);
	line-height: 1;
	margin: 0 0 18px;
}

.skylounge-private__lead {
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.5;
	margin: 0 auto 64px;
	max-width: 720px;
}

.skylounge-private__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.skylounge-private__card {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.skylounge-private__card-media {
	display: block;
	width: 100%;
	aspect-ratio: 6 / 5;
	border-radius: 28px;
	overflow: hidden;
	cursor: zoom-in;
	text-decoration: none;
}

.skylounge-private__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.skylounge-private__card figcaption {
	margin-top: 22px;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 300;
	letter-spacing: 0.01em;
}

@media (max-width: 900px) {
	.skylounge-private__cards { grid-template-columns: 1fr; gap: 40px; }
	.skylounge-private__card-media { aspect-ratio: 16 / 11; max-width: 480px; }
	.skylounge-private__card { width: 100%; }
}

/* ---------- Culinary excellence section ---------- */

.skylounge-culinary {
	background-color: #271407;
	color: #D1C0B1;
	padding: 160px 24px 180px;
}

.skylounge-culinary,
.skylounge-culinary h2,
.skylounge-culinary p {
	color: #D1C0B1;
}

.skylounge-culinary__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.skylounge-culinary__head {
	text-align: center;
	margin-bottom: 72px;
}

.skylounge-culinary__icon {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.skylounge-culinary__icon img,
.skylounge-culinary__icon svg {
	height: 56px;
	width: auto;
	display: block;
}

.skylounge-culinary__title {
	font-family: 'Dongra Script', cursive;
	font-weight: 400;
	font-size: clamp(40px, 5.4vw, 68px);
	line-height: 1;
	margin: 0;
}

.skylounge-culinary__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.skylounge-culinary--swap .skylounge-culinary__media { order: 2; }
.skylounge-culinary--swap .skylounge-culinary__text  { order: 1; }

.skylounge-culinary__media {
	border-radius: 28px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.skylounge-culinary__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Swiper slider variant (multi-image). */
.skylounge-culinary__slider {
	width: 100%;
	height: 100%;
}

.skylounge-culinary__slider .swiper-wrapper,
.skylounge-culinary__slider .swiper-slide {
	height: 100%;
}

.skylounge-culinary__slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Pagination dots — inline on the image, bottom center. */
.skylounge-culinary__pagination.swiper-pagination {
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 4px;
}

.skylounge-culinary__pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: #D1C0B1;
	opacity: 0.3;
	border-radius: 50%;
	margin: 0;
	transition: opacity 0.2s;
	cursor: pointer;
}

.skylounge-culinary__pagination .swiper-pagination-bullet-active {
	opacity: 0.85;
}

.skylounge-culinary__text {
	max-width: 520px;
}

.skylounge-culinary__text p {
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 900px) {
	.skylounge-culinary__row { grid-template-columns: 1fr; gap: 40px; }
	.skylounge-culinary__head { margin-bottom: 48px; }
	.skylounge-culinary__text { max-width: none; }
}

/* ---------- Booking section ---------- */

.skylounge-booking {
	position: relative;
	background-color: #271407;
	padding: 80px 24px;
}

/* Striped band sits BEHIND the card, shorter than the card so the
   card pokes above (into Culinary) and below it. */
.skylounge-booking__band {
	position: absolute;
	top: 140px;
	bottom: 140px;
	left: 0;
	right: 0;
	background-color: #271407;
	background-image: url('../img/skylounge-stripes.png');
	background-repeat: repeat;
	pointer-events: none;
	z-index: 0;
}

.skylounge-booking__inner {
	position: relative;
	z-index: 1;
	max-width: 880px;
	margin: 0 auto;
}

.skylounge-booking__card {
	background-color: #D1C0B1;
	color: #271407;
	border-radius: 32px;
	padding: 56px 72px 64px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.skylounge-booking__card,
.skylounge-booking__card h2,
.skylounge-booking__card p,
.skylounge-booking__card a,
.skylounge-booking__card label,
.skylounge-booking__card input,
.skylounge-booking__card textarea,
.skylounge-booking__card select {
	color: #271407;
}

.skylounge-booking__card .skylounge-booking__form .freeform-button-submit {
	color: #D1C0B1;
}

.skylounge-booking__icon {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.skylounge-booking__icon img,
.skylounge-booking__icon svg {
	height: 56px;
	width: auto;
	display: block;
}

.skylounge-booking__title {
	font-family: 'Dongra Script', cursive;
	font-weight: 400;
	font-size: clamp(40px, 5.4vw, 60px);
	line-height: 1;
	margin: 0 0 36px;
	text-align: center;
}

/* ---------- Freeform auto-render styling (Grid template) ---------- */

.skylounge-booking__form .freeform-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* 12-column grid per row, matching Freeform's freeform-column-XX classes. */
.skylounge-booking__form .freeform-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}

.skylounge-booking__form .freeform-column-12 { grid-column-end: span 12; }
.skylounge-booking__form .freeform-column-6  { grid-column-end: span 6; }
.skylounge-booking__form .freeform-column-4  { grid-column-end: span 4; }
.skylounge-booking__form .freeform-column-3  { grid-column-end: span 3; }

.skylounge-booking__form .freeform-row .freeform-column,
.skylounge-booking__form .freeform-row [class*="freeform-column-"] {
	position: relative;
	display: flex;
	flex-direction: column;
	width: auto;
	padding: 0 22px 0 0;
	float: none;
}

/* Hide labels — design is placeholder-only.
   Set the Placeholder on each field in Freeform's admin. */
.skylounge-booking__form .freeform-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Required asterisk, to the right of the input. */
.skylounge-booking__form .freeform-column:has(> .freeform-required)::after {
	content: '*';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #271407;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}

.skylounge-booking__form .freeform-column.freeform-fieldtype-textarea:has(> .freeform-required)::after {
	top: 28px;
	transform: none;
}

/* Field inputs. */
.skylounge-booking__form .freeform-input {
	width: 100%;
	background: transparent;
	border: 1.5px solid #271407;
	color: #271407;
	font: inherit;
	font-size: 16px;
	padding: 16px 24px;
	border-radius: 100px;
	outline: none;
	transition: border-color 0.2s;
}

.skylounge-booking__form textarea.freeform-input {
	border-radius: 24px;
	min-height: 140px;
	resize: vertical;
	line-height: 1.5;
}

.skylounge-booking__form .freeform-input::placeholder {
	color: #271407;
	opacity: 1;
}

.skylounge-booking__form .freeform-input:focus {
	border-color: #000;
}

/* Submit button — left-align it (Grid template pushes it to the right
   via the spacer column; we want it left, dark-brown pill). */
.skylounge-booking__form .freeform-button-container {
	display: block;
	margin-top: 12px;
}

.skylounge-booking__form .freeform-button-column:empty {
	display: none;
}

.skylounge-booking__form .freeform-button-wrapper {
	display: block;
}

.skylounge-booking__form .freeform-button-submit {
	background-color: #271407;
	color: #D1C0B1;
	border: none;
	border-radius: 100px;
	padding: 14px 36px;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.skylounge-booking__form .freeform-button-submit:hover {
	background-color: #000;
}

/* Field-level error messages. */
.skylounge-booking__form .freeform-errors,
.skylounge-booking__form .ff-errors {
	list-style: none;
	padding: 0;
	margin: 6px 24px 0;
	color: #8a1414;
	font-size: 13px;
}

/* Field instructions (the small help text under a label).
   Bumped selector specificity (4 classes) to override Freeform's
   built-in grey color in _main.css. */
.skylounge-booking__card .freeform-row .freeform-column .freeform-instructions {
	margin: 4px 24px 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #271407;
	opacity: 0.75;
	font-style: italic;
}

.skylounge-booking__form .freeform-form-errors {
	background: transparent;
	border: 1.5px solid #8a1414;
	border-radius: 16px;
	padding: 14px 24px;
	margin: 0 0 20px;
}

.skylounge-booking__form .freeform-form-errors p {
	color: #8a1414;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
}

.skylounge-booking__success {
	color: #271407;
	font-size: 18px;
	line-height: 1.5;
	margin: 24px 0 0;
}

@media (max-width: 700px) {
	.skylounge-booking { padding: 60px 16px; }
	.skylounge-booking__band { top: 100px; bottom: 100px; }
	.skylounge-booking__card { padding: 40px 24px 48px; border-radius: 24px; }
	.skylounge-booking__form .freeform-column-6 { grid-column: span 12; }
	.skylounge-booking__form .freeform-input { padding: 14px 20px; }
}

/* ---------- Skylounge promo (event/agenda page) ---------- */

.skylounge-promo {
	margin: 24px 0 0;
	background-color: #271407;
	background-image: url('../img/skylounge-stripes.png');
	background-repeat: repeat;
	color: #D1C0B1;
}

.skylounge-promo,
.skylounge-promo h3,
.skylounge-promo p,
.skylounge-promo a {
	color: #D1C0B1;
}

.skylounge-promo__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.skylounge-promo__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.skylounge-promo__logo {
	max-width: 360px;
	height: auto;
	display: block;
}

.skylounge-promo__tagline {
	font-family: 'Dongra Script', cursive;
	font-weight: 400;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1;
	margin: 0;
}

.skylounge-promo__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	gap: 8px;
}

.skylounge-promo__heading {
	margin: 0;
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.skylounge-promo__sub {
	margin: 0;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.85;
}

.skylounge-promo__cta {
	margin-top: 16px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background-color: #D1C0B1;
	color: #271407;
	padding: 14px 28px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.skylounge-promo__cta:hover {
	background-color: #fff;
	color: #271407;
}

.skylounge-promo__cta i {
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 900px) {
	.skylounge-promo__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 48px 24px;
	}
	.skylounge-promo__right { align-items: flex-start; text-align: left; }
	.skylounge-promo__logo { max-width: 260px; }
}

/* ---------- Shared utilities (links + .button on skylounge pages) ---------- */

/* Generic .button anywhere on a skylounge page — matches the hero CTA
   style (outlined cream pill, transparent bg, fills on hover). */
body.skylounge .button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	border: 1.5px solid #D1C0B1;
	border-radius: 100px;
	padding: 14px 32px;
	color: #D1C0B1;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

body.skylounge .button:hover {
	background: #D1C0B1;
	color: #000;
}

body.skylounge .button i {
	font-size: 20px;
	line-height: 1;
}

/* Inline body-copy links inside the blocks (hero body, private-club
   lead, culinary text, quote, etc.). Use inherit so each block's text
   colour comes through; underline for affordance. */
.skylounge-hero__body a:not(.button),
.skylounge-private__lead a:not(.button),
.skylounge-private p a:not(.button),
.skylounge-culinary__text a:not(.button),
.skylounge-culinary p a:not(.button),
.skylounge-quote__text a:not(.button) {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: opacity 0.2s;
}

.skylounge-hero__body a:not(.button):hover,
.skylounge-private__lead a:not(.button):hover,
.skylounge-private p a:not(.button):hover,
.skylounge-culinary__text a:not(.button):hover,
.skylounge-culinary p a:not(.button):hover,
.skylounge-quote__text a:not(.button):hover {
	opacity: 0.7;
}

/* ---------- Footer theme override ---------- */

body.skylounge footer {
	background-color: #271407;
}

body.skylounge footer .row.newsletter {
	display: none;
}

body.skylounge footer address p,
body.skylounge footer address p a {
	color: #5EC1FF;
}

@media (max-width: 640px) {
	.skylounge-header { padding: 16px 20px; }
	.skylounge-header__logo img { height: 40px; }
	.skylounge-header__back span { display: none; }

	.skylounge-hero { padding: 40px 20px; min-height: calc(100vh - 80px); }
	.skylounge-hero__logo { min-height: 160px; }
	.skylounge-hero__body { font-size: 15px; }

	.skylounge-private { padding: 96px 20px 112px; }
	.skylounge-private__lead { margin-bottom: 40px; }

	.skylounge-culinary { padding: 96px 20px 112px; }
}
