/* CSS for About Us Page */

/* ================= HERO SECTION ================= */
.about-hero {
	position: relative;
	width: 100%;
	/* Let the header wrapper determine the height or keep it 100vh if header is 100vh */
	height: 100vh;
	overflow: hidden;
}

.hero-parallax-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	/* Align content to bottom */
	padding-bottom: 80px;
	color: white;
}

.hero-bg {
	position: absolute;
	top: -10%;
	left: 0;
	width: 100%;
	height: 120%;
	/* Taller for parallax */
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.header-tint {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
	/* Adjust opacity matching index.html logic if visible there, user said "like index.html" */
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	width: 100%;
}

.hero-title-area {
	width: 72%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}

.hero-title-area h1 {
	line-height: 1;
	max-width: 100%;
}

.hero-desc {
	text-align: right;
	color: white;
	margin-bottom: 24px;
	text-align: left;
}

/* Updated per user request */
.hero-services {
	width: 80%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	/* Align icons to top */
}

.service-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* Align text to left */
	text-align: left;
	gap: 15px;
}

.service-icon {
	width: 40px;
	height: 40px !important;
	color: white;
	position: unset !important;
	/* Icons white */
}

.service-item span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.4;
	text-transform: uppercase;
	color: white;
}

.hero-cta {
	width: 25%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

/* Define accent color locally/safely */
:root {
	--color-accent: #c6a059;
}

/*Hero 1*/
.header {
	z-index: 1;
	position: relative;
	padding-top: 0;
}

header {
	height: 100svh;
	display: flex;
	align-items: end;
	position: relative;
	padding-bottom: 70px;
	z-index: 1;
	background-color: rgb(6, 24, 52);
}

header video,
header img {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: 0.9s;
}

.header-tint {
	position: absolute;
	left: 0;
	top: 0;
	height: 0%;
	width: 100%;
	transition: 0.9s;
	opacity: 0.9;
	z-index: 2;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #132b51 100%);
}

.header-loaded img {
	height: 100%;
}

.header-loaded video {
	height: 100%;
}

.privacy .header-loaded picture {
	height: 100%;
}

.header-loaded picture {
	height: 100%;
}

.header-loaded .header-tint {
	height: 100%;
}

.header-loaded .header-text {
	height: 100%;
	opacity: 100%;
}

.header-text {
	transition-duration: 1s;
	transition-delay: 0.7s;
	transition-property: opacity, padding-top, height;
	height: 0;
	opacity: 0;
	overflow: clip;
	text-align: center;
	grid-column: span 12;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3%;
}

.header-text h1 {
	text-align: start;
	margin-bottom: 45px;
	color: white;
}

.header-text .hero-subheadline {
	padding-bottom: 45px;
	margin-bottom: 45px;
	color: white;
	position: relative;
}

.header-text .hero-subheadline::after {
	content: "";
	position: absolute;
	width: 100px;
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background-color: #fcac0a;
}

.header-text .header-text-p-p {
	opacity: 0.8;
	color: white;
	opacity: 1;
	width: 40%;
	text-align: start;
	margin-bottom: 14px;
}

.header-text .click-underline {
	color: white;
}

.header-text .click-underline::before {
	background-color: white;
}

@media (max-width: 1024px) {
	.hero-title-area {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.service-item {
		width: 26%;
	}

	.hero-title-area h1 {
		max-width: 100%;
	}

	.hero-desc {
		text-align: left;
		max-width: 75%;
	}

	@media (max-width: 768px) {


		.service-item {
			width: 50%;
		}

		.hero-desc {
			text-align: left;
			max-width: 100%;
		}
	}

	.header-text {
		flex-direction: column;
		padding: 12px 0px;
	}



	header {
		padding-bottom: 35px;
	}

	.hero-services {
		grid-column: 1 / 13;
		flex-wrap: wrap;
		row-gap: 14px;
		justify-content: flex-start;
		width: 100%;
	}


	.service-item span {
		font-size: 11px;
	}

	.header-text h1 {

		margin-bottom: 8px;

	}

	.hero-title-area {
		width: 100%;
	}

	.hero-cta {
		justify-content: flex-start;
		margin-top: 8px;
		width: 100%;
	}

	.hero-desc {
		margin-bottom: 16px;
	}

	.service-icon {
		width: 34px;
		height: 34px;
		color: white;
	}

	.service-item span {
		font-size: 11px;
	}
}

/* ================= SECTION 2: WHAT TO EXPECT ================= */
.bg-light {
	background-color: #ffffff;
	color: var(--text, #132033);
}

.section-padding {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section-title {
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 70px;
}

.feature-grid {
	grid-row-gap: 16px;
	grid-column-gap: 16px;
	/* Added spacing for borders */
}

/* Updated Feature Item Styles per Request */
.feature-item {
	display: flex;
	flex-direction: column;
	/* User requested right alignment */
	align-items: flex-start;
	text-align: left;

	/* User requested dark blue border and padding */
	border: 1px solid #e3e3e3;
	padding: 30px;

	box-sizing: border-box;
	/* Ensure padding doesn't break grid */
	gap: 14px;
}

.feature-grid .feature-item:nth-child(odd) {
	grid-column: 1 / 7;
}

.feature-grid .feature-item:nth-child(even) {
	grid-column: 7 / 13;
	transition-delay: 100ms;
}

.feature-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 30px;
}

/* User requested SVGs dark blue */
.feature-icon img {
	width: 100%;
	height: 100%;
	stroke-width: 1px;
	color: #132b51;
	/* Dark blue color */
}

.feature-item h3 {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: uppercase;
	color: black;
	/* Dark blue headers */
}

.feature-item p {
	max-width: 70%;
	color: black;

	/* Dark blue text */
}

@media (max-width: 1024px) {

	.section-title {
		margin-bottom: 55px;
	}
}

@media (max-width: 768px) {
	.feature-item {
		grid-column: 1 / 13 !important;
		margin-bottom: 2px;
	}

	.feature-grid {
		grid-row-gap: 24px;
	}

	.section-title {
		text-align: left;
		margin-bottom: 40px;
	}

	.feature-item h3 {
		font-size: 20px;
	}

	.feature-item p {
		max-width: 100%;
		color: black;

		/* Dark blue text */
	}

	.feature-icon {
		width: 45px;
		height: 45px;
		margin-bottom: 20px;
	}

	.feature-item {
		gap: 10px;
	}
}

/* ================= SECTION 3: WHY CHOOSE ================= */
.why-choose {
	width: 100%;
}

.what-to-expect-container {
	margin-left: calc((100% - 1700px)/2);
	width: calc(100% - (100% - 1700px)/2);
	display: flex;
}

@media (max-width:1800px) {
	.what-to-expect-container {
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		padding-left: 50px;
	}

	.split-text-content {

		width: 70%;

	}
}



.split-layout {
	display: flex;
	width: 100%;
	min-height: 80vh;
}

.split-text-content {
	max-width: 650px;
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: white;
}

.section-title-left {
	margin-bottom: 24px;
	text-transform: uppercase;
}

.highlight-text {
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 4px;
	color: #132b51;
}

.body-text,
.highlight-text span {
	color: black;
	font-weight: 500;
	font-family: "TT Norms Pro Expanded", sans-serif;
}

.split-text-content p+p {
	margin-top: 20px;
}

.split-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	max-height: 1000px;
	margin-left: 70px;
}

.split-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.split-layout {
		flex-direction: column;
	}

	.split-text-content {
		width: 100%;
		padding: 50px 0;
	}

	.split-image {
		width: 100%;
		height: 50vh;
	}

	.section-title-left {
		margin-bottom: 18px;
		text-transform: uppercase;
	}
}

@media screen and (max-width: 1224px) {
	.what-to-expect-container {
		padding-left: 40px;
	}

	.split-image {
		margin-left: 40px;
	}
}

@media screen and (max-width: 968px) {
	.what-to-expect-container {
		padding-left: 24px;
		flex-direction: column;
	}

	.split-text-content {
		max-width: 100%;
		width: 100%;
		padding: 0px 0;
		padding-right: 0px;
		padding-right: 24px;
	}

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

	.split-text-content p+p {
		margin-top: 14px;
	}

	.split-image {
		width: 100%;
		position: relative;
		overflow: hidden;
		max-height: 1000px;
		margin-left: 0px;
		margin-top: 40px;
		height: 60vh;
	}

}

/* ================= SECTION 4: HOW TO BOOK ================= */
.how-to-book {
	background-color: #fcfcfc;
	/* Very light gray/white background */
	padding-bottom: 80px;
}

/* Subtitle color update to match screenshot (dark gray/black) */
.booking-subtitle {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 60px;
	line-height: 1.3;
	color: #4a4a4a;
	text-align: left;
}

.accent-text {
	color: #132b51;
}

.section-4-cta {
	background-color: #132b51;
	/* Dark blue button */
	border-color: #132b51;
	display: inline-flex;
	align-items: center;
}

.booking-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.step-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: white;
	padding: 40px;
	border: 1px solid #e3e3e3;
	height: 100%;
	/* Ensure equal height */
	justify-content: space-between;
}

.step-icon {
	width: 40px;
	height: 40px;
	color: #132b51;
	/* Primary dark blue */
	flex-shrink: 0;
	margin-bottom: 25px;
}

.step-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.step-content h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: black;
	letter-spacing: 1px;
}

.step-content p {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.6;
	color: #4a4a4a;
	margin-bottom: 30px;
}

/* New button style for the card */
.contact-btn-card {
	background-color: #132b51;
	/* Primary dark blue */
	border: none;
	width: 100%;
	justify-content: center;
	margin-top: auto;
	/* Push to bottom if needed, though justify-content: space-between on card helps */
	font-weight: 600;
	font-size: 14px;
}

.contact-btn-card:hover {
	background-color: #0d1929;
	/* Darker blue hover */
	color: white;
}

@media (max-width: 1024px) {
	.booking-steps {
		grid-template-columns: 1fr;
	}

	.booking-subtitle {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.booking-left {
		grid-column: 1 / 13 !important;
		margin-bottom: 40px;
	}

	.booking-steps {
		grid-column: 1 / 13 !important;
	}

	.booking-subtitle {
		font-size: 17px;
		margin-bottom: 0px;
	}

	.step-card {
		padding: 30px;
	}

	.how-to-book {
		padding-bottom: 60px;
	}
}

/* ================= SECTION 5: EXCLUSIVE RESERVATIONS ================= */
.reservations-grid {
	display: flex;
	/* Flexbox for side-by-side expanding layout */
	width: 100%;
	gap: 20px;
}

.res-card {
	position: relative;
	height: 600px;
	overflow: hidden;
	cursor: pointer;
	flex: 1;
	/* Default state: equal width */
	transition: flex 1s cubic-bezier(0.25, 1, 0.5, 1);
	/* Snappy yet smooth transition */
}

.res-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.res-card-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Hover Effect: Expand hovered card */
.res-card:hover {
	flex: 2;
	/* Expand to take up more space */
}

.res-card:hover .res-card-bg {
	transform: scale(1.6);
	transition-delay: .05s;
	/* Keep zoom effect */
}

.res-card-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 2;
	color: white;
	transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
	/* Anchor text to bottom left is already handled by absolute positioning */
}

.res-card-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	opacity: .5;
}

.res-card h3 {
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
	white-space: nowrap;
	text-align: left;
	/* Prevent wrapping during transition helps smoothness */
}

.view-more {
	font-size: 14px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0.9;
	transition: opacity 0.3s;
}

.res-card:hover .view-more {
	opacity: 1;
}

.reservations-cta {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

@media (max-width: 768px) {
	.reservations-grid {
		flex-direction: column;
		/* Stack on mobile */
	}

	.res-card {
		height: auto;
		flex: none;
		width: 100%;
		aspect-ratio: 1/0.5;
	}

	/* Hover Effect: Expand hovered card */
	.res-card:hover {
		flex: none;
		/* Expand to take up more space */
	}

	.res-card:hover .res-card-bg {
		transform: scale(1.2);
		transition-delay: 0s;
		/* Keep zoom effect */
	}

	.res-card h3 {
		font-size: 21px;
	}

	.view-more {
		font-size: 13px;
	}

	.res-card-content {
		bottom: 24px;
		left: 24px;
	}
}

@media (max-width: 550px) {
	.res-card {
		aspect-ratio: 1/1.5;
	}
}



/* Start of - meet styling */
.meet {
	gap: 75px;
}

@media screen and (max-width: 1024px) {
	.meet {
		gap: 50px;
	}
}

@media screen and (max-width: 800px) {
	.meet {
		column-gap: 15px;
	}
}

.meet__image {
	width: 100%;
	object-fit: cover;
}

.meet__image--short {
	grid-column: 1 / span 6;
	grid-row: 2;

	max-height: 490px;
}

@media screen and (max-width: 800px) {
	.meet__image--short {
		grid-column: 1 / span 6;
		grid-row: 2;
	}
}

@media screen and (max-width: 600px) {
	.meet__image--short {
		grid-column: span 12;
		grid-row: 1;
		display: none;
	}

	.meet {
		gap: 0px;
	}


}

.meet__image--long {
	max-height: 820px;

	grid-column: 7 / span 6;
	grid-row: span 2;
}

@media screen and (max-width: 800px) {
	.meet__image--long {
		grid-column: 7 / span 6;
		grid-row: 2;
		max-height: 490px;
	}
}

@media screen and (max-width: 600px) {
	.meet__image--long {
		grid-column: span 12;
		grid-row: 3;
	}
}

.meet__content {
	grid-column: 1 / span 6;
	grid-row: 1;

	padding: 100px 0 0 100px;

	display: flex;
	flex-direction: column;
	gap: 14px;
}

@media screen and (max-width: 1280px) {
	.meet__content {
		padding: 0;
	}
}

@media screen and (max-width: 800px) {
	.meet__content {
		grid-column: span 12;
		grid-row: 1;

	}
}

@media screen and (max-width: 600px) {
	.meet__content {
		grid-column: span 12;
		grid-row: 2;
		padding-bottom: 50px;
	}
}

.meet__label {
	font-weight: 600;
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #132b51;
}

/* End of - meet styling */


/* ======================================================
   PRE-FOOTER (Social Media)
   ====================================================== */
.pre-footer {
	overflow: hidden;
	padding-bottom: 140px;
	/* Adjust as needed */
}

footer {
	margin-top: 0px;
}

.pre-footer h2 {
	margin-bottom: 0;
	grid-column: span 12;
	text-align: center;
}

.image-group {
	align-items: center;
	display: flex;
	height: auto;
	justify-content: center;
	left: -10vw;
	position: relative;
	width: 120vw;
	margin-top: 60px;
}

.image-group div {
	transition: transform 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
	will-change: transform;
}

.image {
	background-color: #1B1E2B;
	border-radius: 0px;
	display: block;
	height: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.image.--2 {
	height: 39.167vw;
	margin: 0 0.417vw;
	width: 29.167vw;
}

.image.--0,
.image.--4 {
	border: 10px solid white;
	height: 25vw;
	width: 20vw;
}

.image.--1,
.image.--3 {
	height: 35vw;
	width: 25vw;
}

.image.--0 {
	left: 5vw;
	z-index: 2;
}

.image.--4 {
	left: -5vw;
	z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.pre-footer {
		overflow: hidden;
	}

	.pre-footer h2 {
		margin-bottom: 0;
	}

	.image-group {
		width: 200%;
		left: -50%;
		margin-top: 20px;
	}

	.image.--0,
	.image.--4 {
		height: 40vw;
		width: 30vw;
	}

	.image.--1,
	.image.--3 {
		height: 64vw;
		width: 40vw;
		left: 8vw;
		z-index: 2;
	}

	.image.--3 {
		left: -8vw;
	}

	.image.--2 {
		height: 90vw;
		width: 70vw;
	}

	.image.--1 {
		left: 5vw;
	}

	.image.--4 {
		left: -8vw;
	}

	.image.--0 {
		left: 8vw;
		z-index: 3;
	}

	.pre-footer {
		overflow: hidden;
		padding-bottom: 90px;
		/* Adjust as needed */
	}
}