body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #c9a86b;
}

/* ==== الشريط العلوي ==== */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 14px;
}
.email, .lang-switch a {
  color: #c9a86b;
  text-decoration: none;
  font-weight: bold;
}
.lang-switch a {
  margin-left: 8px;
}

/* ==== زر CTA ==== */
.cta-button {
  background: #c9a86b;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

/* ==== زر الواتساب ==== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}

/* ==== تقويم التاريخ ==== */
.flatpickr-calendar {
  z-index: 9999 !important;
}

/* ==== نموذج الحجز ==== */
.reservation-form {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #c9a86b;
  color: #EBDBB1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.reservation-form button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  background-color: #fffaf0;
  font-size: 13px;
}
.reservation-form button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #c9a86b;
  color: #EBDBB1;
  font-weight: bold;
  cursor: pointer;
  padding: 14px 20px;
  font-size: 17px;
  border-radius: 10px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.reservation-form button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  transform: scale(1.03);
}
.reservation-form select option {
  color: black;
  background-color: white;
}

/* ==== التاريخ ==== */
.date-wrapper {
  position: relative;
}
.date-wrapper input {
  padding-right: 30px;
}
.date-arrow {
  position: absolute;
  right: 10px;
  top: 12px;
  pointer-events: none;
}

/* ==== زرار Accordion للخدمات ==== */
.service-container {
  max-width: 500px;
  padding: 14px 18px;
  border-radius: 12px;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.55);
  border: 1px solid #c9a86b;
  box-sizing: border-box;
}
.accordion-button {
  background: transparent;
  color: #EBDBB1;
  border: none;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  margin-bottom: 0;
}
.accordion-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.accordion-button .arrow {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.accordion-button.active .arrow {
  transform: rotate(180deg);
}
.accordion-button:focus {
  outline: none;
  border: none;
}
.accordion-button:hover,
.accordion-button:focus {
  background: rgba(30, 30, 30, 0.78);
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
}

/* ==== المحتوى داخل الأكورديون ==== */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: rgba(0, 0, 0, 0.55);
  border:0px solid #c9a86b;
  border-top: none !important;   /* ← أوقف الخط العلوي */
  padding: 14px 20px;
  border-radius: 0 0 10px 10px;
  margin-top: 0 !important;
  margin-bottom: 16px;
  color: #EBDBB1;
  backdrop-filter: blur(2px);
}
.accordion-button.active + .accordion-panel {
  display: block;
  max-height: 1000px;
}
.accordion-panel ul {
  padding: 10px 20px;
  list-style: disc;
  color: #f5e8c8;
}
.accordion-panel li,
.accordion-panel p {
  font-size: 15px;
  line-height: 1.6;
  color: #f5e8c8;
  font-weight: 400;
}

/* ==== قسم عنّي ==== */
.about-toggle-wrapper {
  text-align: center;
  margin-top: 30px;
}
.about-label {
  color: #c9a86b;
  font-size: 14px;
  font-weight: bold;
}
.about-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #c9a86b;
  transition: transform 0.3s ease;
}
.about-toggle:hover {
  transform: scale(1.2);
  color: #e0b76e;
}
.about-arrow {
  font-size: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.about-toggle.open .about-arrow {
  transform: rotate(180deg);
}
.about-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: rgba(0, 0, 0, 0.7);
  color: #f5e8c8;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 20px;
  border-radius: 10px;
}
.about-content.show {
  max-height: 500px;
  padding: 20px;
}

/* ==== Overlay ==== */
.overlay {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
  color: #d8c38e;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ==== شعار وأزرار فوق ==== */
.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  padding: 10px 20px;
}
.top-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.transparent-button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #c9a86b;
  color: #EBDBB1;
  padding: 15px 25px;
  font-size: 18px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  transition: background-color 0.3s, transform 0.2s;
}
.transparent-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.03);
  cursor: pointer;
}

/* ==== Box للخدمات ==== */
.service-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 160px;
  margin: 25px auto;
  box-sizing: border-box;
}
.service-button {
  background: rgba(0, 0, 0, 0.6);
  border: none !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  max-width: 280px;
  min-height: 130px;
  margin: 0 auto 24px auto;
  transition: all 0.3s ease; /* تأثير سلس */
  text-align: left;
  box-sizing: border-box;
}
.service-button:hover {
    background: rgba(0, 0, 0, 0.8);  /* تغيير الخلفية عند التمرير */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);  /* إضافة ظل أكبر */
}

.service-text h3 {
  margin: 0;
  color: #E8D8B1;
  font-size: 28px;
  font-weight: bold;
}
.service-icon {
  filter: brightness(0) saturate(100%) invert(72%) sepia(26%) saturate(537%) hue-rotate(11deg) brightness(93%) contrast(85%);
}

/* ==== تنسيق Choices.js ==== */
.choices__inner {
  background-color: #fffaf0;
  color: #000;
  border-radius: 5px;
  font-size: 13px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.choices__list--dropdown .choices__item {
  background-color: white;
  color: black;
}
.choices__item--selectable.is-highlighted {
  background-color: #eee;
  color: #000;
}
.choices__button {
  color: #b00;
}


/* ==== موبايل ==== */
/* ==== موبايل ==== */
@media only screen and (max-width: 768px) {
  html, body {
    min-height: 100vh;
    min-width: 100vw;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: auto;
    background-image: url('background-mobile.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: black;
  }

.btn-title {
  font-size: 22px;
}

.btn-description {
  font-size: 12px;
}
  
  .service-text h3 {
    font-size: 28px;
  }

  main, section, .service-container {
    background-color: transparent !important;
  }

  /* تصغير حجم الزر وتظليله */
  .accordion-button {
    box-shadow: 0 0 12px 3px rgba(255, 215, 0, 0.25);  /* تظليل الزر */
    padding: 8px 10px;
  }

  .accordion-button .service-button {
    gap: 6px;
  }

  /* تكبير عنوان الزر */
  .service-button span:first-of-type {
    font-size: 17px;
    font-weight: bold;
  }

  /* الجملة التوضيحية تبقى صغيرة */
  .service-button span:nth-of-type(2) {
    font-size: 13px;
    font-weight: normal;
  }

  .accordion-panel {
    font-size: 14px;
    padding: 12px;
  }

  form input,
  form select,
  form textarea {
    font-size: 14px;
    padding: 6px 10px;
  }

  button[type="submit"] {
    font-size: 14px;
    padding: 8px 14px;
  }

  .reservation-form {
    padding: 12px 10px;
  }
}

/* ==== ديسكتوب ==== */
@media only screen and (min-width: 769px) {
  .service-text h3 {
    font-size: 30px;
  }
}


.btn-title {
  font-weight: bold;
  color: #EBDBB1;
  font-size: 26px; /* للحجم الطبيعي على الديسكتوب */
}

.btn-arrow {
  font-size: 16px;
  color: #EBDBB1;
}

.btn-description {
  font-size: 14px;
  color: #EBDBB1;
  font-weight: 400;
  margin-left: 36px;
}



  .service-container {
  max-width: 500px;
  margin: 0 auto 18px auto;
}

.accordion-button {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* دا اللون الغامق */
  border-radius: 16px;
  padding: 24px; /* زوّدنا البادينج لتكبير التظليل */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5); /* ظل خارجي */
  border: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.accordion-button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
.accordion-button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.service-button {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-button img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.service-texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-texts span:first-child {
  font-weight: bold;
  color: #EBDBB1;
  font-size: 20px;
}

.service-texts span:last-child {
  font-size: 16px;
  color: #EBDBB1;
  font-weight: 400;
}
</style>
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

