@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');


* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Playfair Display','Open Sans','Cinzel', serif;
  background-color: #f6f3ea;
  color: #3a2f2f;
  scroll-behavior: smooth;
}
/* الوضع الإنجليزي (عادي) */
body {
  direction: ltr;
  text-align: left;
}

/* عند التحويل إلى العربية */
body.arabic-mode {

  text-align: center; /* ← يجعل النصوص في المنتصف */
}

/* يمكنك تخصيص عناصر معينة فقط */
body.arabic-mode h1,
body.arabic-mode h2,
body.arabic-mode h3,
body.arabic-mode p {
  text-align: center;
}


.container {
  width: 98%;
/*max-width: 1200px;*/
  margin: auto;
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.main-header.scrolled {
  background: rgba(79, 83, 51, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
/* زر الهمبرجر */
.menu-toggle {
  cursor: pointer;
  color: #fff9ec;
  z-index: 2100; /* أعلى من السايد بار */
  transition: all 0.3s ease;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 139, 66, 0.8);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto !important;
}

.menu-toggle:hover {
  background: rgba(181, 139, 66, 1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle.active {
  background: rgba(181, 139, 66, 1);
  transform: scale(1.05);
}

.menu-toggle i {
  pointer-events: none;
  font-size: 1.2rem;
}
.menu-toggle i {
  pointer-events: none;
}
.nav-container {
  display: flex;
  justify-content: left;
  padding: 20px 0;
  align-items: center;
  height: 70px;
}
.logo-nav{
  display: flex;
}
.logo {
  height: 200px;
  border-radius: 50%;
}
.logo-title {
  font-family: 'Playfair Display','Great Vibes', cursive;
  font-size: 1.3rem;
  user-select: none;
  color: #fff9ec;
 margin-top: 15px ;
}

/* ===== Sidebar أساسي ===== */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* مخفي بالكامل على اليسار */
  width: 250px; /* عرض السايد بار */
  height: 100vh;
  background: rgba(79, 83, 51, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  padding: 40px 20px;
  z-index: 2000; /* أعلى من header و menuToggle */
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

/* عند فتح السايد بار */
.sidebar.active {
  right: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Overlay خلف السايد بار عند فتحه */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(3px);
}

.sidebar.active ~ .sidebar-overlay,
body.sidebar-open .sidebar-overlay,
#sidebarOverlay[style*="block"] {
  display: block !important;
  opacity: 1;
}

/* روابط السايد بار */
.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding:40px 20px;
  list-style: none;
}

.sidebar .nav-links li a {
  color: #fff9ec;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 0 5px #b08d57, 0 0 15px #8a6a3e;
  transition: all 0.3s ease;
}

.sidebar .nav-links li a:hover {
  color: #b08d57;
}

.ico-men{
    display: flex;
    gap: 20px;
    position: absolute;
    right:0;
    margin: 10px;
}
.nav-icons {
  font-size: 1.5rem;
  color: #fff9ec;
  cursor: pointer;
}
.nav-icons a {
  color: #fff9ec;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.hidden {
  display: none !important;
}

#userInfo {
  display:none;
  margin-top: 20px;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  gap: 10px;
  text-align: center;
  color: #fff9ec;
  font-weight: 500;
  text-shadow: 0 0 5px #b08d57, 0 0 15px #8a6a3e;
  transition: all 0.3s ease;
  flex-direction: column;
 /* يجعل النص يبدأ من اليسار أو اليمين حسب اللغة */

}
.user-info span {
  display: block;
  line-height: 1.5;
}
#userInfo:hover {
  color: #b08d57;
}

.nav-icons a:hover {
  transform: scale(1.2) rotate(8deg);
}
.nav-icons a:active{
  transform: scale(1.2) rotate(8deg);
}
.hero {
  /*height: calc(200vh - 40px);
  /*margin-top: 40px;*/
  /* background image will be set inline in template */
  display: flex;
 /* align-items: center;*/
  justify-content: center;
  padding: 20px;
  position: relative;
  color: #fff9ec; /* ذهبي */
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px)brightness(0.7);
  z-index: 0;
}

.hero-overlay {
  text-align: center;
}

.hero-overlay.no-bg {
  background: none !important;
  padding: 100px 0  !important;
  z-index: 1;
}

.brand-title {
  font-family: 'Playfair Display','open sans', cursive;
  font-size: 5rem;
  margin: 0;
  user-select: none;
  color: #fff9ec;
}
[data-key="heroSubtitle"] {
  white-space: pre-line;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin: 20px 0 30px;
  /*font-weight: 500;*/
  line-height: 1.6;
  color: #fff9ec;
}

.victorian-btncont {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 15px 30px;
border: 2px solid #b58b42;
border-radius: 50px;
font-family: 'Cinzel Decorative', cursive;
font-size: 23px;
color: #3a2e14;
letter-spacing: 1px;
text-shadow: 0 1px 0 #fff5d1, 0 2px 4px rgba(0,0,0,0.25);
cursor: pointer;

background:
    linear-gradient(180deg, #f9eccc 0%, #e5c477 45%, #caa84f 100%);
background-blend-mode: overlay;
box-shadow: 0 10px 25px rgba(58, 46, 20, 0.3), inset 0 1px 2px rgba(255,255,255,0.4);
overflow: hidden;
transition: all 0.3s ease;
}

/* إطار زخرفي حول الزر */
.victorian-btncont::before {
content: "";
position: absolute;
inset: 4px;
border: 2px solid rgba(181,139,66,0.5);
border-radius: 46px;
pointer-events: none;
background-image: none;
background-size: 160px;
opacity: 0.2;
}

/* لمعة تمر فوق الزر */
.victorian-btncont::after {
content: "";
position: absolute;
top: 0;
left: -70%;
width: 50%;
height: 100%;
background: rgba(255,255,255,0.4);
transform: skewX(-25deg);
transition: 0.7s;
}

.victorian-btncont:hover::after {
left: 120%;
}

.victorian-btncont:hover {
transform: translateY(-3px);
box-shadow: 0 16px 36px rgba(58, 46, 20, 0.4);
}

.victorian-btncont:active {
transform: translateY(0);
box-shadow: inset 0 4px 8px rgba(0,0,0,0.3);
background: linear-gradient(180deg, #e5c477 0%, #caa84f 100%);
}

.victorian-btn {
background: transparent;
border: none;
font-family: inherit;
font-size: inherit;
color: inherit;
cursor: pointer;
padding: 0;
}

/* Sections */
.section-whatever {
position: relative;
padding: 80px 20px;
min-height: 500px;
}

.section-bg {
position: absolute;
inset: 0;
background: rgba(255, 249, 236, 0.5);
z-index: 0;
}

.section-content {
position: relative;
z-index: 2;
display: flex;
align-items: center;
gap: 40px;
}

.section-content * {
position: relative;
z-index: 2;
}

.section-left {
flex: 1;
position: relative;
z-index: 2;
}

.section-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: #463421 !important;
margin-bottom: 20px;
font-weight: 700;
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.section-text {
font-size: 1.1rem;
line-height: 1.8;
color: #463421 !important;
margin-bottom: 15px;
font-weight: 500;
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* التأكد من ظهور النصوص في section-whatever */
.section-whatever .section-left .section-title,
.section-whatever .section-left .section-text {
color: #463421 !important;
position: relative;
z-index: 2;
}

.img-top {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services */
.services {
padding: 80px 20px;
background: #fff9ec;
}

.services .section-title {
text-align: center;
margin-bottom: 50px;
color: #463421 !important;
font-weight: 700;
}

.service {
display: flex;
align-items: center;
gap: 40px;
margin-bottom: 60px;
}

.service.reverse {
flex-direction: row-reverse;
}

.service-img {
flex: 1;
}

.service-img img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-text {
flex: 1;
}

.service-text h3 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: #463421 !important;
margin-bottom: 15px;
font-weight: 700;
}

.service-text p {
font-size: 1.1rem;
line-height: 1.8;
color: #463421 !important;
font-weight: 500;
}

/* Gallery */
.section-gallery {
padding: 80px 20px;
background: #f6f3ea;
text-align: center;
}

.section-gallery h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: #4f5333 !important;
margin-bottom: 10px;
font-weight: 700;
}

.section-gallery p {
font-size: 1.2rem;
color: #4f5333 !important;
margin-bottom: 40px;
font-weight: 500;
}

.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 30px;
}

.gallery img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
cursor: pointer;
transition: transform 0.3s ease;
}

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

.controls {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 30px;
}

.controls button {
background: rgba(181, 139, 66, 0.8);
border: none;
color: #fff9ec;
padding: 10px 20px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
}

.controls button:hover {
background: rgba(181, 139, 66, 1);
transform: scale(1.1);
}

.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
z-index: 9999;
align-items: center;
justify-content: center;
}

.lightbox.active {
display: flex;
}

.lightbox img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}

.lightbox .close {
position: absolute;
top: 20px;
right: 30px;
color: #fff;
font-size: 40px;
cursor: pointer;
}

.lightbox .nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
color: #fff;
font-size: 40px;
cursor: pointer;
padding: 20px;
}

.lightbox .nav.prev {
left: 20px;
}

.lightbox .nav.next {
right: 20px;
}

/* Testimonials */
.testimonials {
padding: 80px 20px;
background: #fff9ec;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.main-title {
color: #4f5333 !important;
font-weight: 700;
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: #4f5333;
margin-bottom: 15px;
}

.line {
display: block;
width: 100px;
height: 3px;
background: #b58b42;
margin: 0 auto;
}

.testimonial-gallery-container {
overflow: hidden;
}

.testimonial-gallery {
display: flex;
gap: 30px;
overflow-x: auto;
scroll-snap-type: x mandatory;
padding: 20px 0;
}

.testimonial-card {
min-width: 300px;
background: #fff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
text-align: center;
scroll-snap-align: start;
}

.wrap-img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
}

.client-rating {
color: #b58b42;
margin-bottom: 15px;
}

.review-text {
font-size: 1rem;
line-height: 1.6;
color: #6b6b4f;
margin-bottom: 15px;
}

.client-name {
font-weight: 600;
color: #4f5333;
}

/* Contact Section */
.contact-section {
position: relative;
padding: 80px 20px;
background: linear-gradient(135deg, rgba(79, 83, 51, 0.9) 0%, rgba(107, 107, 79, 0.9) 100%);
color: #fff9ec;
text-align: center;
overflow: hidden;
}

.contact-img-right,
.contact-img-left {
position: absolute;
width: 200px;
opacity: 0.3;
z-index: 0;
}

.contact-img-right {
right: 0;
bottom: 0;
}

.contact-img-left {
left: 0;
top: 0;
}

.contact-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
}

.contact-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
margin-bottom: 20px;
}

.contact-text {
font-size: 1.2rem;
margin-bottom: 10px;
}

.contact-btn {
margin: 40px 0;
}

.whatsapp-link {
display: inline-flex;
align-items: center;
gap: 15px;
background: #25D366;
color: #fff;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-link:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.icon-circle {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.contact-footer {
margin-top: 50px;
color: #fff9ec;
}

.contact-foot {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.info-item {
display: flex;
align-items: center;
gap: 10px;
}

.info-item a {
color: #fff9ec;
font-size: 1.5rem;
transition: color 0.3s ease;
}

.info-item a:hover {
color: #b58b42;
}

.info-item p {
margin: 0;
font-size: 1rem;
}

.social-right {
display: flex;
align-items: center;
gap: 15px;
}

.social-right span {
margin-left: 10px;
}

.social-right a {
color: #fff9ec;
font-size: 1.5rem;
transition: color 0.3s ease;
}

.social-right a:hover {
color: #b58b42;
}

/* Footer */
footer {
background: rgba(79, 83, 51, 0.95);
color: #fff9ec;
padding: 40px 20px;
text-align: center;
}

.container-footer {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.footer-img {
max-width: 200px;
height: auto;
}

footer p {
margin: 0;
font-size: 0.9rem;
}

/* Decor - العناصر الديكورية موجودة في veloura.css */

/* Responsive */
@media (max-width: 768px) {
.brand-title {
font-size: 3rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.section-title,
.main-title,
.contact-title {
font-size: 2rem;
}

.service {
flex-direction: column !important;
}

.service-img,
.service-text {
flex: none;
}

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

.testimonial-card {
min-width: 250px;
}
}




