﻿:root {
	--wp-gold: #D4AF37;
	--wp-gold-light: #FFD978;
	--wp-rose-gold: #C9A89A;
	--wp-black: #0F0F0F;
	--wp-dark: #151515;
	--wp-cream: #F7F1E6;
	--wp-soft: #FFF8EF;
	--wp-text: #333333;
	--wp-muted: #777777;
	--wp-white: #ffffff;
	--wp-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
	--wp-radius: 22px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Montserrat", "Segoe UI", Tahoma, Arial, sans-serif;
	background: var(--wp-cream);
	color: var(--wp-text);
}

	body.rtl {
		direction: rtl;
		text-align: right;
	}

	body.lightbox-open {
		overflow: hidden;
	}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
}

h1, h2, h3, .logo-text strong {
	font-family: "Cinzel", serif;
}

.container {
	width: min(1180px, calc(100% - 32px));
	margin: auto;
}

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	width: 100%;
	background: rgba(15, 15, 15, 0.94);
	backdrop-filter: blur(12px);
	z-index: 1000;
	border-bottom: 1px solid rgba(201, 168, 154, 0.28);
}

.nav-wrap {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--wp-white);
}

	.logo img {
		width: 58px;
		height: 58px;
		object-fit: contain;
		border-radius: 14px;
		background: var(--wp-black);
		padding: 4px;
		box-shadow: 0 0 24px rgba(201, 168, 154, 0.25);
		transition: 0.3s ease;
	}

	.logo:hover img {
		transform: scale(1.05);
	}

.logo-text strong {
	display: block;
	color: var(--wp-gold-light);
	font-size: 19px;
	letter-spacing: 0.8px;
	line-height: 1.1;
}

.logo-text small {
	display: block;
	color: var(--wp-rose-gold);
	font-size: 11px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-top: 4px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--wp-white);
}

	.main-nav a {
		color: var(--wp-white);
		font-size: 14px;
		font-weight: 600;
		transition: 0.25s;
	}

		.main-nav a:hover {
			color: var(--wp-gold-light);
		}

.lang-btn, .nav-toggle {
	border: 1px solid rgba(201, 168, 154, 0.45);
	background: transparent;
	color: var(--wp-gold-light);
	border-radius: 999px;
	padding: 9px 15px;
	cursor: pointer;
	transition: 0.25s;
}

.nav-toggle {
	display: none;
	font-size: 20px;
}

.hero-section {
	min-height: 100vh;
	padding-top: 130px;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.78)), url("../../uploads/gallery/DSC07990.JPG") center/cover no-repeat;
	color: var(--wp-white);
}

.hero-content {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 38px;
	align-items: center;
}

.eyebrow {
	display: inline-block;
	color: var(--wp-gold-light);
	border: 1px solid rgba(201, 168, 154, 0.55);
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
	background: rgba(15, 15, 15, 0.35);
	font-size: 13px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.hero-text h1 {
	font-size: clamp(42px, 6vw, 78px);
	line-height: 1.05;
	margin: 0 0 22px;
	max-width: 850px;
}

.hero-text p {
	font-size: 18px;
	color: #eeeeee;
	max-width: 720px;
	line-height: 1.8;
}

.hero-actions {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 999px;
	font-weight: 800;
	transition: 0.25s;
	border: 0;
	cursor: pointer;
}

.btn-gold {
	background: linear-gradient(135deg, var(--wp-rose-gold), var(--wp-gold-light));
	color: var(--wp-black);
	box-shadow: 0 12px 30px rgba(201, 168, 154, 0.28);
}

	.btn-gold:hover {
		transform: translateY(-3px);
	}

.btn-outline {
	border: 1px solid rgba(255,255,255,.45);
	color: var(--wp-white);
	background: transparent;
}

	.btn-outline:hover {
		background: var(--wp-white);
		color: var(--wp-black);
	}

.btn-dark {
	background: var(--wp-black);
	color: var(--wp-gold-light);
}

.full-btn {
	width: 100%;
}

.hero-card, .feature-card, .service-card, .booking-box, .contact-card {
	background: var(--wp-white);
	border-radius: var(--wp-radius);
	padding: 28px;
	box-shadow: var(--wp-shadow);
	border: 1px solid rgba(201, 168, 154, 0.15);
}

.hero-card {
	background: rgba(15, 15, 15, 0.55);
	color: var(--wp-white);
	text-align: center;
	backdrop-filter: blur(15px);
	border-color: rgba(201, 168, 154, 0.42);
}

	.hero-card img {
		width: 120px;
		height: 120px;
		object-fit: contain;
		margin-bottom: 18px;
	}

	.hero-card h3 {
		color: var(--wp-gold-light);
		font-size: 28px;
		margin: 0 0 14px;
	}

	.hero-card span {
		display: inline-block;
		margin-top: 12px;
		background: rgba(201, 168, 154, 0.18);
		color: var(--wp-gold-light);
		padding: 8px 14px;
		border-radius: 999px;
		font-size: 13px;
	}

.features-section {
	margin-top: -60px;
	position: relative;
	z-index: 5;
}

.feature-grid, .cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.cards-grid {
	grid-template-columns: repeat(4, 1fr);
}

.feature-card i, .service-card i {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--wp-rose-gold), var(--wp-gold-light));
	color: var(--wp-black);
	display: grid;
	place-items: center;
	font-size: 22px;
	margin-bottom: 18px;
}

.feature-card h3, .service-card h3 {
	margin: 0 0 10px;
	color: var(--wp-black);
}

.feature-card p, .service-card p {
	color: var(--wp-muted);
	line-height: 1.7;
}

.section {
	padding: 90px 0;
}

.section-heading {
	text-align: center;
	margin-bottom: 44px;
}

	.section-heading.align-left {
		text-align: left;
	}

body.rtl .section-heading.align-left {
	text-align: right;
}

.section-heading span {
	color: var(--wp-gold);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-heading h2 {
	font-size: clamp(30px, 4vw, 48px);
	margin: 12px 0 0;
	color: var(--wp-black);
}

.booking-section, .reels-section {
	background: var(--wp-soft);
}

.booking-box {
	max-width: 560px;
	margin: auto;
}

.form-group {
	margin-bottom: 16px;
}

	.form-group label {
		display: block;
		margin-bottom: 7px;
		font-weight: 700;
	}

	.form-group input, .form-group select {
		width: 100%;
		height: 48px;
		border: 1px solid rgba(15, 15, 15, 0.16);
		border-radius: 14px;
		padding: 0 14px;
		font-family: inherit;
		outline: none;
		background: var(--wp-white);
	}

.booking-error {
	color: #b00020;
	font-weight: 700;
	margin: 14px 0 0;
	min-height: 20px;
}

.gallery-section {
	background: var(--wp-cream);
}

.gallery-page {
	padding-top: 130px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.gallery-item {
	overflow: hidden;
	border-radius: 24px;
	box-shadow: var(--wp-shadow);
	cursor: pointer;
	position: relative;
	background: var(--wp-black);
}

	.gallery-item img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
		display: block;
		transition: 0.45s;
	}

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

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.22), transparent);
	display: flex;
	align-items: flex-end;
	padding: 24px;
	opacity: 0;
	transition: .45s;
	z-index: 4;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay-content {
	transform: translateY(30px);
	transition: .45s;
}

.gallery-item:hover .gallery-overlay-content {
	transform: translateY(0);
}

.gallery-tag {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,.15);
	color: var(--wp-gold-light);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 12px;
	backdrop-filter: blur(10px);
}

.gallery-overlay h3 {
	color: #fff;
	font-size: 25px;
	margin: 0 0 10px;
}

.gallery-overlay p {
	color: rgba(255,255,255,.88);
	line-height: 1.7;
	font-size: 14px;
	margin-bottom: 18px;
	max-width: 320px;
}

.gallery-book-btn {
	border: 0;
	background: linear-gradient(135deg,var(--wp-rose-gold),var(--wp-gold-light));
	color: var(--wp-black);
	height: 44px;
	padding: 0 20px;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: .25s;
}

	.gallery-book-btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 30px rgba(201,168,154,.35);
	}

.gallery-more {
	text-align: center;
	margin-top: 32px;
}

.gallery-back-btn {
	color: var(--wp-black);
	border-color: rgba(15,15,15,.35);
}

.gallery-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

	.gallery-filters button {
		border: 1px solid rgba(201,168,154,.45);
		background: #fff;
		color: #0F0F0F;
		padding: 10px 18px;
		border-radius: 999px;
		font-weight: 700;
		cursor: pointer;
		transition: .25s;
	}

		.gallery-filters button.active,
		.gallery-filters button:hover {
			background: linear-gradient(135deg, var(--wp-rose-gold), var(--wp-gold-light));
			color: var(--wp-black);
		}

.gallery-hidden,
.gallery-item.filtered-hide {
	display: none !important;
}

.gallery-item.gallery-show {
	display: block;
	animation: galleryFadeIn 0.45s ease both;
}

@keyframes galleryFadeIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 3000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

	.lightbox.show {
		display: flex;
	}

.lightbox-content {
	text-align: center;
	max-width: 92%;
	z-index: 3005;
}

	.lightbox-content > img {
		max-width: 100%;
		max-height: 66vh;
		border-radius: 24px;
		box-shadow: 0 20px 60px rgba(0,0,0,.55);
		object-fit: contain;
		transition: transform .25s ease, opacity .25s ease;
		cursor: zoom-in;
	}

#lightboxImage.zoomed {
	transform: scale(1.45);
	cursor: zoom-out;
}

.lightbox-close {
	position: fixed;
	top: 24px;
	right: 28px;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	background: var(--wp-black);
	color: var(--wp-gold-light);
	font-size: 32px;
	cursor: pointer;
	z-index: 3010;
	line-height: 1;
}

.lightbox-nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.25);
	background: rgba(15,15,15,.75);
	color: var(--wp-gold-light);
	font-size: 34px;
	cursor: pointer;
	z-index: 3010;
	pointer-events: auto;
}

.lightbox-prev {
	left: 28px;
}

.lightbox-next {
	right: 28px;
}

.lightbox-counter {
	color: var(--wp-gold-light);
	font-weight: 700;
	margin: 14px 0 4px;
}

.lightbox-title {
	color: var(--wp-gold-light);
	margin: 8px 0 14px;
	font-size: 24px;
}

.lightbox-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.reels-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.reel-card {
	background: var(--wp-white);
	border-radius: 28px;
	padding: 18px;
	box-shadow: var(--wp-shadow);
}

	.reel-card video {
		width: 100%;
		height: 520px;
		object-fit: cover;
		border-radius: 22px;
		background: var(--wp-black);
		display: block;
	}

	.reel-card h3 {
		margin: 18px 0 4px;
		color: var(--wp-black);
		text-align: center;
	}

.contact-section {
	background: var(--wp-cream);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 28px;
	align-items: center;
}

.contact-list p {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	margin: 18px 0;
}

.contact-list i {
	color: var(--wp-gold);
	font-size: 22px;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.contact-card h3 {
	margin-top: 0;
	color: var(--wp-black);
}

.contact-card p {
	color: var(--wp-muted);
	line-height: 1.7;
}

.map-box {
	margin-top: 35px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: var(--wp-shadow);
	border: 1px solid rgba(201, 168, 154, 0.22);
}

.floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: var(--wp-white);
	display: grid;
	place-items: center;
	font-size: 30px;
	z-index: 999;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

body.rtl .floating-whatsapp {
	right: auto;
	left: 24px;
}

.site-footer {
	background: var(--wp-black);
	color: var(--wp-white);
	padding: 24px 0;
}

.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #cccccc;
	font-size: 14px;
}

@media (max-width: 992px) {
	.nav-toggle {
		display: inline-flex;
	}

	.main-nav {
		position: absolute;
		top: 82px;
		left: 16px;
		right: 16px;
		background: var(--wp-black);
		border: 1px solid rgba(201, 168, 154, 0.25);
		border-radius: 20px;
		padding: 18px;
		display: none;
		flex-direction: column;
		align-items: stretch;
	}

		.main-nav.show {
			display: flex;
		}

	.hero-content, .contact-grid {
		grid-template-columns: 1fr;
	}

	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.reels-grid {
		grid-template-columns: 1fr;
	}

	.footer-wrap {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.hero-section {
		padding-top: 120px;
	}

	.logo img {
		width: 48px;
		height: 48px;
	}

	.logo-text strong {
		font-size: 15px;
	}

	.logo-text small {
		font-size: 9px;
	}

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

	.reel-card video {
		height: 420px;
	}

	.hero-card {
		display: none;
	}

	.hero-text h1 {
		font-size: 38px;
	}

	.section {
		padding: 70px 0;
	}

	.lightbox-nav {
		width: 44px;
		height: 44px;
		font-size: 26px;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}
.btn-instagram {
	background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
	color: #fff;
}

.btn-facebook {
	background: #1877f2;
	color: #fff;
}

.btn-tiktok {
	background: #000;
	color: #fff;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

	.contact-actions .btn {
		min-width: 150px;
		justify-content: center;
	}

.floating-social {
	position: fixed;
	right: 20px;
	bottom: 120px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}

	.floating-social a {
		width: 55px;
		height: 55px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 24px;
		text-decoration: none;
		box-shadow: 0 8px 20px rgba(0,0,0,.25);
		transition: .3s;
	}

		.floating-social a:hover {
			transform: translateY(-4px) scale(1.08);
		}

.social-whatsapp {
	background: #25d366;
}

.social-instagram {
	background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.social-facebook {
	background: #1877f2;
}

.social-tiktok {
	background: #000;
}