/* =============================================
   COLORS BY MOR — Global Styles
   Paste into WordPress Customizer > Additional CSS
   or enqueue as a stylesheet in your theme.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Assistant:wght@300;400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --cbm-alabaster: #F7F3F0;
  --cbm-cashmere: #EAE2DC;
  --cbm-iron: #3D3A39;
  --cbm-blush: #D9B6A9;
  --cbm-gold: #B89F7B;
  --cbm-muted: #8A8280;
  --cbm-border: #DDD5CF;
  --cbm-white: #FFFFFF;
  --cbm-whatsapp: #25D366;
  --cbm-radius: 2px;
  --cbm-content-width: 700px;
  --cbm-section-spacing: clamp(80px, 12vw, 180px);
  --cbm-font-serif: 'Cormorant Garamond', Georgia, serif;
  --cbm-font-body: 'Assistant', system-ui, sans-serif;
}

/* ---------- Base Section Reset ---------- */
.cbm-section {
  box-sizing: border-box;
  direction: rtl;
  text-align: right;
  font-family: var(--cbm-font-body);
  color: var(--cbm-iron);
  -webkit-font-smoothing: antialiased;
}

.cbm-section *,
.cbm-section *::before,
.cbm-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cbm-section img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cbm-section a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Utility ---------- */
.cbm-content {
  max-width: var(--cbm-content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.cbm-divider {
  width: 64px;
  height: 1px;
  background: var(--cbm-gold);
  margin: 0 auto;
}

.cbm-section-title {
  font-family: var(--cbm-font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--cbm-iron);
}

/* ---------- CTA Button ---------- */
.cbm-btn {
  display: inline-block;
  background: var(--cbm-blush);
  color: var(--cbm-iron);
  font-family: var(--cbm-font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cbm-btn:hover {
  background: #CCA899;
}

/* =============================================
   HERO
   ============================================= */
.cbm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cbm-cashmere);
}

.cbm-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cbm-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 243, 240, 0.4);
}

.cbm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  animation: cbm-fadeIn 1s ease-out forwards;
}

.cbm-hero__title {
  font-family: var(--cbm-font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 3px;
  color: var(--cbm-iron);
  margin-bottom: 16px;
}

.cbm-hero__subtitle {
  font-family: var(--cbm-font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cbm-muted);
  letter-spacing: 1px;
  margin-bottom: 48px;
}

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

/* =============================================
   SERVICES
   ============================================= */
.cbm-services {
  background: var(--cbm-alabaster);
  padding: var(--cbm-section-spacing) 24px;
}

.cbm-services__list {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: var(--cbm-content-width);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cbm-services__item {
  text-align: center;
}

.cbm-services__name {
  font-family: var(--cbm-font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 1px;
  color: var(--cbm-iron);
  margin-bottom: 8px;
}

.cbm-services__desc {
  font-family: var(--cbm-font-body);
  font-size: 16px;
  color: var(--cbm-muted);
  line-height: 1.6;
}

/* =============================================
   GALLERY
   ============================================= */
.cbm-gallery {
  background: var(--cbm-alabaster);
  padding: var(--cbm-section-spacing) 16px;
}

.cbm-gallery__grid {
  max-width: 960px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.cbm-gallery__item {
  overflow: hidden;
}

.cbm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.cbm-gallery__item:hover img {
  transform: scale(1.05);
}

.cbm-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.cbm-gallery__item--tall {
  grid-row: span 2;
}

@media (max-width: 640px) {
  .cbm-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .cbm-gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .cbm-gallery__item--tall {
    grid-row: span 1;
  }
}

/* =============================================
   PRICING
   ============================================= */
.cbm-pricing {
  background: var(--cbm-alabaster);
  padding: var(--cbm-section-spacing) 24px;
}

.cbm-pricing__list {
  max-width: var(--cbm-content-width);
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cbm-pricing__row {
  display: flex;
  align-items: baseline;
}

.cbm-pricing__service {
  font-family: var(--cbm-font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cbm-iron);
  white-space: nowrap;
}

.cbm-pricing__dots {
  flex: 1;
  border-bottom: 1px dotted var(--cbm-gold);
  margin: 0 16px;
  margin-bottom: 6px;
}

.cbm-pricing__price {
  font-family: var(--cbm-font-body);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cbm-iron);
  white-space: nowrap;
}

.cbm-pricing__note {
  text-align: center;
  color: var(--cbm-muted);
  font-size: 14px;
  margin-top: 48px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.cbm-testimonials {
  background: var(--cbm-cashmere);
  padding: var(--cbm-section-spacing) 24px;
}

.cbm-testimonials__slider {
  max-width: var(--cbm-content-width);
  margin: 48px auto 0;
  text-align: center;
  min-height: 200px;
}

.cbm-testimonials__slide {
  display: none;
}

.cbm-testimonials__slide.active {
  display: block;
}

.cbm-testimonials__quote {
  font-family: var(--cbm-font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  color: var(--cbm-iron);
  margin-bottom: 24px;
}

.cbm-testimonials__author {
  font-family: var(--cbm-font-serif);
  font-size: 1.2rem;
  color: var(--cbm-muted);
  font-style: normal;
  letter-spacing: 1px;
}

.cbm-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.cbm-testimonials__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--cbm-muted);
  padding: 8px;
  transition: color 0.3s;
  line-height: 1;
}

.cbm-testimonials__btn:hover {
  color: var(--cbm-iron);
}

.cbm-testimonials__dots {
  display: flex;
  gap: 8px;
}

.cbm-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cbm-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.cbm-testimonials__dot.active {
  background: var(--cbm-blush);
}

/* =============================================
   FAQ
   ============================================= */
.cbm-faq {
  background: var(--cbm-alabaster);
  padding: var(--cbm-section-spacing) 24px;
}

.cbm-faq__list {
  max-width: var(--cbm-content-width);
  margin: 48px auto 0;
}

.cbm-faq__item {
  border-bottom: 1px solid var(--cbm-border);
}

.cbm-faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--cbm-font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--cbm-iron);
  text-align: right;
  direction: rtl;
  gap: 16px;
}

.cbm-faq__icon {
  font-size: 18px;
  color: var(--cbm-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.cbm-faq__item.open .cbm-faq__icon {
  transform: rotate(45deg);
}

.cbm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.cbm-faq__item.open .cbm-faq__answer {
  max-height: 300px;
}

.cbm-faq__answer p {
  font-family: var(--cbm-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cbm-muted);
  padding: 0 0 20px;
}

/* =============================================
   BOOKING CTA
   ============================================= */
.cbm-booking {
  background: var(--cbm-cashmere);
  padding: var(--cbm-section-spacing) 24px;
  text-align: center;
}

.cbm-booking__text {
  font-family: var(--cbm-font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cbm-muted);
  margin-top: 16px;
  margin-bottom: 40px;
}

/* =============================================
   FOOTER
   ============================================= */
.cbm-footer {
  background: var(--cbm-cashmere);
  padding: 64px 24px;
  text-align: center;
}

.cbm-footer__brand {
  font-family: var(--cbm-font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 2px;
  color: var(--cbm-iron);
  margin-bottom: 24px;
}

.cbm-footer__links {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cbm-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cbm-font-body);
  font-size: 15px;
  color: var(--cbm-muted);
  transition: color 0.3s;
}

.cbm-footer__link:hover {
  color: var(--cbm-iron);
}

.cbm-footer__link svg {
  width: 16px;
  height: 16px;
  stroke: var(--cbm-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cbm-footer__copy {
  font-family: var(--cbm-font-body);
  font-size: 13px;
  color: var(--cbm-muted);
  margin-top: 32px;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.cbm-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cbm-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s;
  animation: cbm-waPulse 2s ease-in-out infinite;
}

.cbm-whatsapp:hover {
  transform: scale(1.1);
}

.cbm-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes cbm-waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
