/**
 * Party Packages Landing Page Styles
 * Dark theme with black background and light text
 */

.hf-party-packages-landing {
	background: var(--hf-background-color);
	color: #fff;
}

/* Hero Section */
.hf-hero-section {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--hf-background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 20px;
}

.hf-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: color-mix(in srgb, var(--hf-background-color) 60%, transparent);
	z-index: 1;
}

.hf-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
}

.hf-hero-headline {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 20px 0;
	line-height: 1.2;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hf-hero-subheadline {
	font-size: 1.25rem;
	margin: 0 0 30px 0;
	color: #f0f0f0;
	line-height: 1.6;
}

.hf-hero-cta {
	display: inline-block;
	padding: 15px 40px;
	background: var(--hf-accent-color);
	color: #fff;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hf-hero-cta:hover {
	background: var(--hf-accent-color-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
	color: #fff;
}

/* Packages Section */
.hf-packages-section {
	padding: 80px 20px;
	background: var(--hf-background-color);
}

.hf-packages-container {
	max-width: 1200px;
	margin: 0 auto;
}

.hf-packages-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* Package Card */
.hf-package-card {
	position: relative;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #333;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hf-package-card:hover {
	transform: translateY(-5px);
	border-color: var(--hf-accent-color);
	box-shadow: 0 8px 20px rgba(0, 255, 0, 0.2);
}

.hf-package-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0) 35%,
		rgba(0, 0, 0, 0.5) 60%,
		rgba(0, 0, 0, 0.85) 80%,
		rgba(0, 0, 0, 0.95) 100%
	);
	pointer-events: none;
}

.hf-package-card:hover .hf-package-overlay {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0) 35%,
		rgba(0, 0, 0, 0.6) 60%,
		rgba(0, 0, 0, 0.9) 80%,
		rgba(0, 0, 0, 0.98) 100%
	);
}

.hf-package-content {
	position: relative;
	z-index: 2;
	padding: 35px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hf-package-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
	line-height: 1.2;
}

.hf-package-description {
	font-size: 1rem;
	line-height: 1.4;
	color: #f0f0f0;
	margin: 0;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.hf-package-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--hf-accent-color);
	margin: 5px 0;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
	line-height: 1;
}

.hf-package-button {
	display: block;
	width: 100%;
	padding: 12px 24px;
	background: var(--hf-accent-color);
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.hf-package-button:hover {
	background: var(--hf-accent-color-hover);
	color: #fff;
}

.hf-package-button-secondary {
	background: #333;
	border: 1px solid #555;
}

.hf-package-button-secondary:hover {
	background: #444;
	border-color: #666;
}

/* Gallery Section */
.hf-gallery-section {
	padding: 40px 20px;
	background: #0a0a0a;
}

.hf-gallery-container {
	max-width: 1200px;
	margin: 0 auto;
}

.hf-gallery-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 50px 0;
	color: #fff;
}

.hf-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.hf-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 4/3;
	background: var(--hf-card-background);
}

.hf-gallery-link {
	display: block;
	width: 100%;
	height: 100%;
}

.hf-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.hf-gallery-item:hover img {
	transform: scale(1.1);
}

/* Lightbox overlay (simple implementation) */
.hf-lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.hf-lightbox-overlay.active {
	display: flex;
}

.hf-lightbox-content {
	max-width: 90%;
	max-height: 90%;
	position: relative;
}

.hf-lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	height: auto;
	width: auto;
}

.hf-lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	padding: 10px;
	line-height: 1;
}

.hf-lightbox-close:hover {
	color: var(--hf-accent-color);
}

/* Responsive Design */
@media (min-width: 1400px) {
	.hf-packages-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 992px) {
	.hf-hero-headline {
		font-size: 2.5rem;
	}

	.hf-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.hf-hero-section {
		min-height: 50vh;
		padding: 60px 20px;
	}

	.hf-hero-headline {
		font-size: 2rem;
	}

	.hf-hero-subheadline {
		font-size: 1.125rem;
	}

	.hf-packages-section,
	.hf-gallery-section {
		padding: 40px 20px;
	}

	.hf-packages-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hf-package-card {
		height: 500px;
	}

	.hf-gallery-title {
		font-size: 2rem;
	}

	.hf-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.hf-hero-headline {
		font-size: 1.75rem;
	}

	.hf-hero-cta {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.hf-package-card {
		height: 450px;
	}

	.hf-package-content {
		padding: 25px;
	}

	.hf-package-title {
		font-size: 1.5rem;
	}

	.hf-package-description {
		font-size: 0.95rem;
	}

	.hf-package-price {
		font-size: 1.875rem;
	}

	.hf-gallery-grid {
		grid-template-columns: 1fr;
	}
}
