* {
	scroll-behavior: smooth;
}

:root {
	--primary: #ff8000;
	--primary-navy: #ff8000;
	--secondary-slate: #cc6600;
	--accent: #111111;
	--white: #ffffff;
	--accent-hover: #000000;
	--accent-gold: #111111;
	--light-bg: #f8f9fa;
	--gray-200: #e2e8f0;
	--text-dark: #111111;
	--text-light: #444444;
}

.hero-gradient {
	background: linear-gradient(135deg, #ff8000 0%, #cc6600 100%);
}

.accent-gold {
	color: #111111;
}

.card-hover {
	transition: all 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(255, 128, 0, 0.12);
}

.amenity-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
	border-radius: 12px;
	font-size: 28px;
	border: 2px solid #ff8000;
}

.gallery-image {
	cursor: pointer;
	transition: transform 0.3s ease;
	border: 3px solid transparent;
}

.gallery-image:hover {
	transform: scale(1.03);
	border-color: #ff8000;
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.92);
	animation: fadeIn 0.3s ease;
}

.lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Floating Action Buttons */
.floating-buttons {
	position: fixed;
	bottom: 24px;
	right: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}

.floating-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	border: 2px solid #ff8000;
}

.floating-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	border: 2px solid #111111;
}

.floating-btn svg {
	width: 24px;
	height: 24px;
}

.floating-btn.call {
	background: #111111;
	color: #ff8000;
}

.floating-btn.whatsapp {
	background: #25D366;
	color: var(--white);
}

.floating-btn.email {
	background: #ff8000;
	color: #ffffff;
}

/* Mobile Menu Styles */
.mobile-menu {
	position: fixed;
	left: 0;
	top: 64px;
	width: 100%;
	background: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	z-index: 30;
	box-shadow: 0 4px 12px rgba(255, 128, 0, 0.1);
}

.mobile-menu.active {
	max-height: 400px;
}

.mobile-menu a {
	display: block;
	padding: 14px 20px;
	color: #111111;
	text-decoration: none;
	border-bottom: 1px solid #e8eef5;
	transition: all 0.3s ease;
	font-weight: 500;
}

.mobile-menu a:hover {
	background-color: #fff3e6;
	color: #ff8000;
	padding-left: 24px;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
}

.hamburger span {
	width: 24px;
	height: 3px;
	background-color: #ff8000;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
	color: #111111;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: #ff8000;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #ff8000;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.cta-button {
	background-color: #ff8000;
	color: white;
	transition: all 0.3s ease;
	border: 2px solid #ff8000;
}

.cta-button:hover {
	background-color: #111111;
	color: #ff8000;
	border-color: #111111;
}

.cta-button-gold {
	background-color: #111111;
	color: #ff8000;
	transition: all 0.3s ease;
	border: 2px solid #111111;
	font-weight: 600;
}

.cta-button-gold:hover {
	background-color: #ff8000;
	color: #ffffff;
	border-color: #ff8000;
}

.section-title {
	color: #ff8000;
	font-weight: 700;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ff8000 0%, transparent 100%);
}

.amenity-card {
	background: var(--white);
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.amenity-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
	border-color: var(--accent);
}

.pricing-card {
	background: white;
	border-top: 4px solid #ff8000;
}

.price-value {
	color: #ff8000;
	font-weight: 700;
}

@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	
	.floating-buttons {
		bottom: 16px;
		right: 16px;
	}

	.floating-btn {
		width: 48px;
		height: 48px;
		border: 2px solid #111111;
	}

	.floating-btn svg {
		width: 20px;
		height: 20px;
	}
}