/* ===== 25% black overlay on 3rd hero slide (mezze food image) ===== */
figure.cs_hero_bg[data-src*="hero_bg_3"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* ===== Contact CTA block on homepage ===== */
.cs_contact_cta .cs_newsletter_icon {
  height: 60px;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Hero / Page Heading dark overlay for legibility ===== */
.cs_page_heading.cs_bg_filed {
  position: relative;
  isolation: isolate;
}
.cs_page_heading.cs_bg_filed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.cs_page_heading.cs_bg_filed > .container {
  position: relative;
  z-index: 1;
}

/* ===== Suite/Room Gallery (landscape-friendly) ===== */
.cs_suite_gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.cs_suite_gallery.cs_cols_3 {
  grid-template-columns: repeat(3, 1fr);
}
.cs_suite_gallery.cs_featured > .cs_suite_gallery_item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
@media (max-width: 575px) {
  .cs_suite_gallery.cs_featured > .cs_suite_gallery_item:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}
.cs_suite_gallery .cs_suite_gallery_item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  background-color: #1b1b1b;
}
.cs_suite_gallery .cs_suite_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cs_suite_gallery .cs_suite_gallery_item:hover img {
  transform: scale(1.05);
  opacity: 0.55;
}
.cs_suite_gallery .cs_suite_gallery_label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--primary-font), serif;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cs_suite_gallery .cs_suite_gallery_item:hover .cs_suite_gallery_label {
  opacity: 1;
}
@media (max-width: 991px) {
  .cs_suite_gallery.cs_cols_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_suite_gallery .cs_suite_gallery_label {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .cs_suite_gallery,
  .cs_suite_gallery.cs_cols_3 {
    grid-template-columns: 1fr;
  }
}

/* Apply these styles only on mobile devices */
@media screen and (max-width: 1199px) {
  /* Modern mobile menu styling */
  .cs_nav .cs_nav_list {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding-top: 140px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Menu item styling with text shifted left */
  .cs_nav .cs_nav_list > li {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 8px 0 !important;
    position: relative !important;
    padding-left: 60px !important; /* REDUCED from 40px to move text left */
  }
  
  .cs_nav .cs_nav_list > li > a {
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    padding: 15px 0 !important;
    max-width: 70% !important; /* INCREASED from 40% to give text more room */
    border-bottom: none !important;
  }

  /* Keep remaining styles the same */
  .cs_menu_dropdown_toggle {
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
  }

  .cs_menu_dropdown_toggle span {
    position: relative !important;
    width: 15px !important;
    height: 15px !important;
  }
}

@media screen and (max-width: 1199px) {
  /* Keep your existing styles */
  
  /* Add these new styles for submenu items */
  
  /* First level submenu items */
  .cs_nav .cs_nav_list > li > ul > li {
    padding-left: 30px !important; /* Reduced left padding */
    position: relative !important;
  }
  
  .cs_nav .cs_nav_list > li > ul > li > a {
    max-width: 70% !important; /* Give text enough room */
    font-size: 16px !important; /* Slightly smaller font for submenus */
  }
  
  /* First level submenu toggle buttons */
  .cs_nav .cs_nav_list > li > ul .cs_menu_dropdown_toggle {
    right: 20px !important; /* Position toggle button */
    width: 30px !important; /* Smaller toggle for submenus */
    height: 30px !important;
  }
  
  /* All submenu levels - general styling */
  .cs_nav .cs_nav_list ul {
    padding-left: 15px !important; /* Proper indentation */
  }
  
  /* All submenu items styling */
  .cs_nav .cs_nav_list ul li {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important; /* Lighter border */
    padding: 5px 0 !important; /* Less vertical padding */
  }
}