html{
	margin-top: 0 !important;
}
:root{
	--moon-dust: #BAA38A; /* accents */
	--moonlight: #F9F6F0; /* background */
	--moon-shadow: #000000; /* primary text */
	--accent-opaque: rgba(186,163,138,0.12);
	--max-width: 1200px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face{
	font-family: 'change';
	src: url('../fonts/changa-variablefont_wght-webfont.eot');
	src: url('../fonts/changa-variablefont_wght-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/changa-variablefont_wght-webfont.woff') format('woff'),
	url('../fonts/changa-variablefont_wght.ttf') format('truetype'),
	url('../fonts/changa-variablefont_wght-webfont.svg#svgwebfont') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {color: var(--charcoal);line-height: 1.6;}
section {padding: 4em 2em;  margin: auto;  }
img{width: 100%;max-width: 100%;height: auto;}
footer {background-color: var(--ivory);color: var(--charcoal);text-align: center;padding: 3em 2em;font-size: 0.9rem;}
a{text-decoration: none;color: var(--gold);font-weight: bold;}

/* Header */
.main-menu ul li{margin: 0 30px;}
.header-area {background: var(--ivory);padding: 10px 0;box-shadow: 0 2px 5px rgba(0,0,0,0.05);}
.site-branding{text-align: center;}
/* Desktop nav */
.nav-list {list-style: none;padding: 0;margin: 0;}
.nav-list li a {text-decoration: none;color: var(--charcoal);font-weight: 500;transition: color 0.3s;}
.nav-list li a:hover {color: var(--gold);}
/* Mobile toggle button */
.menu-toggle {background: none;border: none;cursor: pointer;padding: 8px;z-index: 1001;}
.menu-icon {display: block;width: 25px;height: 3px;margin: 5px;background-color: var(--moon-dust);border-radius: 2px;transition: 0.3s;}
/* Animate hamburger into X */
.menu-toggle.active .menu-icon:nth-child(1) {transform: rotate(45deg) translate(5px, 5px);background-color: var(--gold);}
.menu-toggle.active .menu-icon:nth-child(2) {opacity: 0;}
.menu-toggle.active .menu-icon:nth-child(3) {transform: rotate(-45deg) translate(6px, -6px);background-color: var(--gold);}
/* Mobile side menu */
.mobile-menu {display: none;position: fixed;top: 0;right: 0;width: 260px;height: 100%;background: var(--moonlight);box-shadow: 0 0 15px rgba(0,0,0,0.15);padding: 20px;overflow-y: auto;z-index: 1000;}
/* Mobile menu logo */
.mobile-logo img {max-width: 50%;}
/* Mobile actions */
.mobile-actions .btn {width: 80%;font-size: 16px;}
.mobile-actions .pll-switcher {margin-top: 10px;}
/* Overlay */
.menu-overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(30, 61, 54, 0.6);opacity: 0;visibility: hidden;transition: opacity 0.3s;z-index: 999;}
/* Active states */
.mobile-menu.active {display: block;}
.menu-overlay.active {opacity: 1;visibility: visible;}
/* Close button */
.close-btn {background: none;border: none;font-size: 2rem;line-height: 1;cursor: pointer;position: absolute;top: 40px;left: 15px;color: var(--moon-dust);}
/* Mobile menu items */
#menu-menu-arabic-1{text-align: right;}
.nav-list-mobile {list-style: none;padding: 20px 0 0;margin: 0; color: var(--moon-dust); margin-top: 15%;}
.nav-list-mobile li {margin: 15px 0;}
.nav-list-mobile li a {text-decoration: none;color: var(--forest);font-size: 18px;font-weight: 600;transition: color 0.3s, padding-left 0.3s;}
.nav-list-mobile li a:hover {color: var(--gold);padding-left: 8px;}
.lang-item{list-style: none;margin: 0 10%;}
.lang-item img{margin-right: 5px;}
/*Header*/

.hero-section {
	min-height: 80vh;
	position: relative;
}
.hero-img {
	background-image: url("../img/hero.jpg");
	background-size: contain; 
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
	min-height: 80vh;
}
.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: url("../img/pattern-2.jpg");  /* Use icon-only tile */
	background-size: 300px;
	background-repeat: repeat;
	opacity: 0.8; 
	z-index: 1;
}

.hero-overlay-blur {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.30); 
	backdrop-filter: blur(1px); 
	z-index: 2;
}

.hero-text-wrapper {
	/*background: rgba(0, 0, 0, 0.50);*/
	/*backdrop-filter: blur(9px);*/
	padding: 35px;
	border-radius: 20px;
	/*max-width: 600px;*/
	margin-inline: auto;
	z-index: 3;
}

.hero-content {
	position: relative;
	z-index: 3;
	color: #fff;
}

.hero-content.rtl {
	text-align: right;
}

.sub-title {
	font-size: 35px;
	color: #d9c5ac;
	font-weight: 600;
}

.title {
	font-size: 50px;
	font-weight: 800;
	color: #e7d2b9;
}

.desc {
	font-size: 24px;
	line-height: 1.7;
}

.divider {
	width: 60px;
	height: 3px;
	background: #b79a79;
	border-radius: 10px;
	margin: 10px 0 25px;
}

.btn-primary {
	background-color: #b79a79;
	border-color: #b79a79;
}

.btn-primary:hover {
	background-color: #a4876c;
	border-color: #a4876c;
}

.btn-outline-primary {
	border-color: #b79a79;
	color: #b79a79;
}

.btn-outline-primary:hover {
	background-color: #b79a79;
	color: #fff;
}

.fade-in {
	animation: fadeIn .9s ease both;
}

@keyframes fadeIn {
	from { opacity:0; transform: translateY(18px); }
	to { opacity:1; transform: translateY(0); }
}

@media (max-width: 991px) {
	.hero-img {
		min-height: 80vh;
		background-size: cover;
	}
	.hero-text-wrapper {
		padding: 20px;
	}
	.title {
		font-size: 32px;
	}
	.header-conta{
		flex-direction: row-reverse;
	}
}

.social-icons i{
	background: var(--moon-dust);
	color: #fff;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
/* Section heading */
#services h3,
#services p.text-muted {
	text-align: center;
}

/* New card style */
.service-card-v2 {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-v2:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Base image block */
.service-card-image {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    background-size: contain;   /* 🔥 ensures full image, no cropping */
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #f8f4f1; /* soft neutral background behind image */
}

/* Fallback if NO background-image */
.service-card-image:not([style*="background-image"]) {
    background: linear-gradient(135deg, #f4ede7 0%, #ece3db 100%);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Optional subtle pattern logo watermark */
.service-card-image:not([style*="background-image"])::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    opacity: 0.08;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}


/* Text area */
.service-card-body {
	padding: 18px 22px 22px;
	text-align: left;
}

.service-title {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #3b2c29;
	text-align: center;
}

.service-text {
	font-size: 14px;
	margin: 0;
	color: #6b6b6b;
}

/* RTL: align text to the right in Arabic */
html[dir="rtl"] .service-card-body {
	/*text-align: right;*/
}

/* GENERAL SECTION STYLE */
.contact-section {
    background: #f7f5f3; /* soft luxury tone */
}

/* TITLE */
.contact-section .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    /*text-align: center;*/
}

/* ICON + TEXT LIST */
.contact-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #5b5b5b;
}
.contact-list i {
    color: #a88e86;
}

/* SOCIAL ICONS */
.social-icons a {
    font-size: 20px;
    color: #a88e86;
    margin-right: 10px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #8e746a;
}

/* MAP CARD */
.map-wrapper {
    background: rgba(255,255,255,0.65);
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(3px);
}
iframe {
    border-radius: 12px;
}

/* CENTER TITLE ON BOTH LANGUAGES */
#contact h4,
#contact p.text-muted {
    /*text-align: center;*/
}

/* RTL FIX */
.rtl .contact-list li {
    text-align: right;
}
.rtl .social-icons a {
    margin-left: 10px;
    margin-right: 0;
}

/* Footer */
footer{background:#000; color:#fff; padding:36px 0}
footer a{color:rgba(255,255,255,0.85)}
/* RTL helper */
.rtl{direction:rtl; text-align:right}
/* Responsive tweaks */
/* small utility */
.pill{background:var(--accent-opaque); color:var(--moon-dust); padding:6px 12px; border-radius:20px; font-weight:600}
/* Floating WhatsApp */
.whatsapp-fab{position:fixed; right:18px; bottom:18px; z-index:9999}
@media(min-width:992px){.hero-title{font-size:48px}}

.gallery-section {
	background: #f7f5f3;
}

/* Album card */
.ba-album-card {
	background: rgba(255,255,255,0.9);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0,0,0,0.08);
	transition: 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ba-album-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Cover */
.ba-album-cover {
	position: relative;
	display: block;
	text-decoration: none;
}

.ba-album-cover-img {
	width: 100%;
	padding-bottom: 70%;           
	background-size: cover;
	background-position: center;
}

.ba-album-badge {
	position: absolute;
	bottom: 10px;
	left: 12px;
	background: rgba(168,142,134,0.9);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 13px;
}


.ba-album-body {
	padding: 16px 18px 18px;
	text-align: left;
}

.ba-album-title {
	font-size: 18px;
	margin-bottom: 6px;
	color: #3b2c29;
}

.ba-album-desc {
	font-size: 14px;
	margin: 0;
}

/* RTL: everything on the right in Arabic */
html[dir="rtl"] .ba-album-body {
	text-align: right;
}

html[dir="rtl"] .ba-album-badge {
	left: auto;
	right: 12px;
}

.contact-section {
	background: #f9f8f7;
}

/* Image card */
.contact-image-wrapper {
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-image {
	width: 100%;
	display: block;
	border-radius: 16px;
}

/* Optional: make map corners match */
.map-wrapper iframe {
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* RTL tweaks */
html[dir="rtl"] .contact-section {
	text-align: right;
}
html[dir="rtl"] .before-after-grid,
html[dir="rtl"] .row,
html[dir="rtl"] .cards-wrapper {
    direction: rtl;
    text-align: right;
}
