*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: #f8f9fa;
  color: #333;
}

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

body.welcome-active {
  overflow: hidden;
}

body.welcome-active header,
body.welcome-active .nav,
body.welcome-active .search,
body.welcome-active .qr-section,
body.welcome-active main,
body.welcome-active #selected-item {
  display: none !important;
}

body.loading-active {
  overflow: hidden;
}

body.loading-active header,
body.loading-active .hero,
body.loading-active .hero-sides,
body.loading-active footer {
  filter: blur(3px);
}

.welcome-page {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 40px 24px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out, opacity 0.5s ease;
}

.welcome-page.hidden {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82) 40%, #0f1724 100%);
}

.loader-card {
  width: min(420px, 100%);
  padding: 28px 28px 20px;
  display: grid;
  gap: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 36, 0.22);
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid #d4af37;
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.35);
  animation: loader-logo-spin 3s ease-in-out infinite, loader-logo-pulse 1.8s ease-in-out infinite;
}

.loader-card h2 {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #1a1f36;
}

.loader-card p {
  margin: 0;
  font-size: 0.98rem;
  color: #4b5563;
}

.loader-bar {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: #ebeff5;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #f5e58f);
  transition: width 0.25s ease;
}

.loader-progress {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1a1f36;
}

.loader-screen.loaded {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

@keyframes loader-logo-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.03); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes loader-logo-pulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(212, 175, 55, 0.35); }
  50% { box-shadow: 0 22px 44px rgba(212, 175, 55, 0.45); }
}

body.loading-active {
  overflow: hidden;
}

body.loading-active header,
body.loading-active .hero,
body.loading-active .hero-sides,
body.loading-active footer {
  filter: blur(3px);
}

.welcome-overlay {
  width: min(1100px, 100%);
  padding: 32px;
  border-radius: 28px;
  background: rgba(3, 9, 21, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  color: #f8f9fa;
  backdrop-filter: blur(12px);
}

.welcome-logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.welcome-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.welcome-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.welcome-copy p {
  margin: 14px 0;
  line-height: 1.8;
  color: rgba(248, 248, 248, 0.92);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
}

.hero-cta {
  margin-top: 20px;
  font-weight: 700;
  color: #fff;
}

.menu-button {
  margin-top: 24px;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f5e58f);
  color: #1a1f36;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(212, 175, 55, 0.26);
}

@media (max-width: 768px) {
  .welcome-page {
    padding: 24px 18px;
  }

  .welcome-overlay {
    padding: 26px;
  }
}

header {
  padding: 20px;
  background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  min-height: auto;
}

.header-left {
  flex-shrink: 0;
}

.header-left .logo {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d4af37;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
}

.header-left .logo:hover {
  transform: scale(1.05);
}

.header-center {
  flex-grow: 1;
  text-align: center;
}

.header-center h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.header-center p {
  margin: 5px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

.header-center p:first-of-type {
  font-size: 15px;
  font-style: italic;
  color: #d4af37;
  margin-top: 10px;
}

.header-right {
  flex-shrink: 0;
}

.language-toggle {
  position: relative;
  display: inline-block;
}

.language-trigger {
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #1a1f36;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-top: 8px;
  min-width: 140px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.language-menu[hidden] {
  display: none;
}

.hero-section {
  max-width: 1180px;
  margin: 10px auto;
  padding: 15px 20px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hero-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: center;
}

.hero-logo {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  object-fit: cover;
  border: 5px solid #d4af37;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.25);
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.05;
  color: #1a1f36;
}

.hero-copy p {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5160;
}

.hero-cta {
  margin-top: 20px;
  font-weight: 700;
  color: #1a1f36;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hero-card {
  min-height: 180px;
  border: 2px dashed #d4af37;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: #f6f5f2;
  color: #1a1f36;
}

.hero-card-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d4af37;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.hero-card p {
  margin: 0;
  font-weight: 600;
}
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-logo {
    margin: 0 auto;
  }
}

.lang-option {
  display: block;
  padding: 12px 16px;
  color: #1a1f36;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.lang-option:hover {
  background: #f0f0f0;
  color: #d4af37;
}

.lang-option:first-child {
  border-radius: 6px 6px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 6px 6px;
}
.nav-shortcuts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 12px;
  padding: 0 16px;
  color: #1a1f36;
  font-size: 0.95rem;
}

.nav-shortcuts span {
  font-weight: 600;
}

.shortcut-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
}

.shortcut-link:hover,
.shortcut-link:focus-visible {
  text-decoration: underline;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.98);
  padding: 16px 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  gap: 10px;
  border-radius: 20px;
}

.nav button {
  padding: 12px 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #1a1f36;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 130px;
}

.nav button:hover,
.nav button:focus-visible {
  background: #d4af37;
  border-color: #d4af37;
  color: #1a1f36;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.nav button:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.4);
  outline-offset: 3px;
}

/* Hero sides: larger images and buttons aligned to the bottom */
.hero-sides {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: stretch;
  max-width: 1180px;
  margin: 28px auto;
  padding: 0 16px;
}

.hero-side {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 560px; /* increase container height so image appears bigger and button moves down */
  padding: 18px;
  background: transparent;
}

.hero-side-image {
  width: 100%;
  height: 420px; /* larger visual height for the side images */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.hero-side-button {
  margin-top: auto; /* push button to the bottom of the hero-side box */
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f5e58f);
  color: #1a1f36;
  font-weight: 700;
  cursor: pointer;
}


.nav button:hover {
  background: #d4af37;
  color: #1a1f36;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.search {
  padding: 20px;
  background: white;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.search-message {
  margin-top: 12px;
  font-size: 1rem;
  color: #1a1f36;
  min-height: 1.4em;
}

.search input {
  padding: 12px 40px 12px 18px;
  width: 100%;
  max-width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.search input:focus {
  outline: none;
  border-color: #d4af37;
  background: white;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.clear-search-btn {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(240px, -50%);
  background: none;
  border: none;
}
/* cake styles */
.cake-page {
  max-width: 1180px;
  margin: 28px auto 42px;
  padding: 0 16px;
}

.cake-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  padding: 36px;
}

.cake-hero-text {
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.13);
  color: #b47f0a;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cake-hero h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 2.8vw, 3.2rem);
  color: #1a1f36;
  line-height: 1.05;
}

.intro {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.78;
  color: #4f5564;
}

.cake-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  width: 100%;
}

.cake-card {
  min-width: 280px;
}

@media (max-width: 1280px) {
  .cake-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .cake-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.cake-card {
  border: 2px solid rgba(212, 175, 55, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, #fefefe 0%, #fcfbf8 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cake-card:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.24);
}

.cake-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.cake-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fbe5a6;
  color: #b47f0a;
  font-size: 1.4rem;
}

.cake-card h3 {
  margin: 0;
  font-size: 1.22rem;
  color: #1a1f36;
}

.price {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #d37c08;
}

.cake-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: #4f5564;
  font-size: 0.98rem;
}

.li-style-1 {
  padding-left: 24px;
  position: relative;
  color: #2c5aa0;
  font-weight: 600;
}

.li-style-1::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5aa0;
  font-weight: 800;
  font-size: 1.1rem;
}

.li-style-2 {
  padding-left: 24px;
  position: relative;
  color: #d37c08;
  font-weight: 600;
}

.li-style-2::before {
  content: "◆";
  position: absolute;
  left: 2px;
  color: #d37c08;
  font-size: 0.9rem;
}

.li-style-3 {
  padding-left: 24px;
  position: relative;
  color: #7b3f1f;
  font-weight: 600;
}

.li-style-3::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #7b3f1f;
  font-size: 1rem;
}

.cake-note {
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff7dc;
  color: #6b4f0b;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.cake-hero-images {
  display: grid;
  gap: 18px;
}

.cake-image-card {
  min-height: 220px;
  border-radius: 24px;
  background: #e9edf5;
  border: 1px solid rgba(52, 84, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d6b82;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px;
}

.cake-order-btn {
  margin-top: 16px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #1da752 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cake-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #1da752 0%, #128c3c 100%);
}

.cake-order-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .cake-hero {
    grid-template-columns: 1fr;
  }

  .cake-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.clear-search-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

.menu-section {
  margin: 30px 20px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-heading {
  margin: 0;
  padding: 25px 20px;
  background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
  color: white;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: default;
  text-transform: uppercase;
}

.items-grid {
  display: grid;
   grid-template-columns: repeat(3, minmax(220px, 1fr));
   gap: 24px;
   padding: 30px;
   background: #f8f9fa;
 }
 
 @media (max-width: 900px) {
   .items-grid {
     grid-template-columns: repeat(2, minmax(140px, 1fr));
     gap: 18px;
     padding: 22px;
   }
 }
 
 @media (max-width: 520px) {
   .items-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
     padding: 16px;
   }
   .item-card {
     padding: 16px 12px;
   }
 }

.item-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
}

.item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.item-image {
  width: 100%;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.item-card h3 {
  margin: 16px 12px 0 12px;
  font-size: 17px;
  color: #1a1f36;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.item-price {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: #d4af37;
}

.composition-note {
  margin: 0 12px 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #5c5c5c;
}

.portion-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 10px 12px 8px;
}

.portion-option-btn {
  padding: 8px 10px;
  border: 1px solid #d4af37;
  border-radius: 999px;
  background: #fff8e8;
  color: #8a6510;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.portion-option-btn.active {
  background: #d4af37;
  color: #1a1f36;
}

.selected-portion-label {
  margin: 6px 12px 0;
  font-size: 13px;
  color: #4a4a4a;
}

.choice-toggle-btn {
  margin: 0 12px 8px 12px;
  padding: 8px 10px;
  background: #fff8e8;
  border: 1px solid #d4af37;
  border-radius: 999px;
  color: #8a6510;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.choice-toggle-btn:hover {
  background: #fceac2;
}

.accompaniment-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 12px 10px 12px;
}

.accompaniment-option-btn {
  padding: 6px 10px;
  border: 1px solid #e3d0a2;
  border-radius: 999px;
  background: #ffffff;
  color: #4a4a4a;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
}

.accompaniment-option-btn:hover {
  border-color: #d4af37;
  background: #fff8e8;
}

.add-to-cart-btn {
  margin: 0 12px 16px 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1a1f36, #2d3561);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #1a1f36;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.qr-section {
  margin: 30px auto;
  padding: 35px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  text-align: center;
  border-top: 4px solid #d4af37;
  display: none;
}

.qr-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qr-image {
  width: 200px;
  height: 200px;
}

#qr-image canvas {
  width: 100% ;
  height: 100% ;
}

.qr-logo {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
}

.qr-target {
  color: #7f8c8d;
  font-size: 12px;
  margin-bottom: 15px;
}

.qr-section p {
  margin: 10px 0;
  color: #1a1f36;
  line-height: 1.6;
  font-weight: 500;
}

/* Compositions Section */
.compositions-section {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  padding: 30px 20px;
  border-top: 2px solid #d4af37;
}

.compositions-heading {
  margin: 0 0 25px 0;
  font-size: 18px;
  color: #1a1f36;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compositions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.composition-item {
  background: white;
  padding: 16px 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-family: inherit;
  color: #1a1f36;
  transition: all 0.3s ease;
  font-weight: 500;
  border: none;
  border-left: 4px solid #d4af37;
  cursor: pointer;
}

.composition-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #f8f9fa;
}

.composition-item.selected {
  background: #d4af37;
  color: #1a1f36;
  border-left-color: #1a1f36;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.composition-item.selected:hover {
  background: #c9a227;
}

/* Modal for item preview */
.item-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.item-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  margin: auto;
  padding: 0;
  box-sizing: border-box;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow-y: auto;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px 25px;
  text-align: center;
}

.modal-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 320px;
  background: #f0f0f0;
  border-radius: 10px;
  margin: 0 auto 25px auto;
  object-fit: contain;
  display: block;
}

.modal-details {
  text-align: left;
  margin-bottom: 25px;
}

.modal-details h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #1a1f36;
  font-weight: 700;
}

.modal-details p {
  margin: 8px 0;
  color: #555;
  line-height: 1.6;
}

.modal-price {
  font-size: 28px;
  color: #d4af37;
  font-weight: 700;
  margin: 20px 0;
}

.modal-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #1a1f36, #2d3561);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-btn:hover {
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #1a1f36;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    align-items: center;
    text-align: center;
    line-height: 1.1;
    width: 100%;
}
  .header-center{
    width: 100%;
    text-align: center;
  } 
  .nav{
    width: 100%;
  }
   .header-left .logo {
    width: 64px;
    height: 64px;
  }

  .header-center h1 {
    font-size: 45px;
  }

  .header-center p {
    font-size: 12px;
  }

  .hero {
    padding: 0 14px 24px;
  }

  .hero-video-container {
    width: 100%;
    height: 36vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .hero-video-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-text {
    font-size: 40px;
    padding: 0 14px;
    line-height: 1.1;
  }

  .hero-sides {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .hero-side {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    min-height: auto;
  }

  .hero-side-image {
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 280px;
  }

  .hero-side-button {
    max-width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .hero-social-row {
    margin-top: 18px;
    padding: 0 12px;
  }

  .landing-socials {
    gap: 15px;
    padding: 15px;
    max-width: 90%;
  }

  .social-link {
    width: 60px;
    height: 60px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .item-image {
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    aspect-ratio: 4 / 3;
  }

  .search input {
    font-size: 1rem;
  }

  .modal-image {
    height: 220px;
  }

}

@media (max-width: 520px) {
  header {
    padding: 16px 12px;
  }

  .header-left .logo {
    width: 56px;
    height: 56px;
  }

  .header-center h1 {
    font-size: 20px;
  }

  .hero {
    padding: 0 12px 20px;
  }

  .hero-video-container {
    min-height: 32vh;
    max-height: 54vh;
  }

  .hero-text {
    font-size: clamp(1rem, 6.5vw, 1.8rem);
  }

  .hero-sides {
    gap: 14px;
  }

  .hero-side {
    padding: 12px;
  }

  .hero-side-image {
    max-height: 240px;
  }

  .hero-side-button {
    padding: 12px 16px;
  }

  .search input {
    font-size: 1rem;
  }

  .hero-social-row {
    margin-top: 16px;
  }

  .landing-socials {
    gap: 12px;
    padding: 10px 14px;
  }

  .social-link {
    width: 54px;
    height: 54px;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .item-image {
    height: 130px;
    min-height: 130px;
    max-height: 130px;
    aspect-ratio: 4 / 3;
  }

  .landing-footer {
    width: calc(100% - 24px);
    margin: 18px auto 26px;
    padding: 16px 18px;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px 40px;
  overflow: visible;
}

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

.hero-video-container {
  position: relative;
  width: 100%;
  height: 36vh;
  max-height: 54vh;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.42) 100%);
    pointer-events: none;
}

.hero-sides {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.hero-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-height: 460px;
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid rgba(31, 34, 44, 0.08);
    box-shadow: 0 32px 60px rgba(25, 30, 40, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}


.hero-social-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding: 0 16px 0;
}

.landing-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.landing-footer {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px 24px;
    background: white;
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    color: #1a1f36;
    font-size: 1.08rem;
    text-align: center;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
}

.footer-copy {
    margin: 0;
    text-align: center;
    font-size: 1.08rem;
    color: #1a1f36;
    font-weight: 500;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
    padding: 10px 0;
}

.social-link {
    display: inline-flex;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 34, 44, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
    background: #ffffff;
}

.social-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 860px) {
    .landing-footer {
       padding: 22px 16px;
    }

    .footer-icons {
       justify-content: center;
       gap: 14px;
    }

    .social-link {
       width: 62px;
       height: 62px;
    }

    .social-icon {
       width: 36px;
       height: 36px;
    }
}
.social-icon {
  transform: scale(1.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    color: white;
}

.footer-contact h2 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: white;
} 

.hero-side:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 70px rgba(25, 30, 40, 0.12);
    border-color: rgba(31, 34, 44, 0.15);
}

.hero-side-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 320px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.hero-side-button {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37, #f5e58f);
    color: #1a1f36;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.hero-side-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    opacity: 0.98;
}

@media (max-width: 900px) {
  .hero {
    padding-bottom: 20px;
  }
  .hero-video-container {
    min-height: 45vh;
  }
  .hero-sides {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-side {
    max-width: 100%;
    min-height: auto;
    padding: 14px;
  }
  .hero-side-image {
    max-height: 240px;
  }
}

.hero-text{
  /* keep hero text constrained to the video container */
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  color: white;
  font-size: clamp(0.95rem, 3vw, 1.6rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.02;
  max-height: 100%;
  overflow: hidden;
}

.hero-text h1 {
  margin: 0;
  padding: 0 12px;
  line-height: 1.02;
  max-width: 94%;
  word-break: break-word;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
  font-size: clamp(1rem, 3.2vw, 1.8rem);
}

.hero-text-rotator {
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
}

.hero-text-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5160;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.hero-text-block.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.menu-link-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #d4af37, #f5e58f);
  color: #1a1f36;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-link-btn:hover {
  transform: translateY(-2px);
}
 .mariage-container {
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .mariage-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .mariage-header img {
      max-width: 150px;
      height: auto;
      margin-bottom: 20px;
    }

    .mariage-header h1 {
      font-size: 48px;
      color: #1a1f36;
      font-weight: 700;
      margin: 0 0 10px;
      font-style: italic;
      background: linear-gradient(135deg, #d4af37, #8b7500);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .mariage-header p {
      font-size: 20px;
      color: #555;
      margin: 0;
    }

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

    .package-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    }

    .package-header {
      padding: 25px;
      text-align: center;
      font-weight: 700;
      font-size: 22px;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .package-bronze .package-header {
      background: linear-gradient(135deg, #8b4513, #cd7f32);
    }

    .package-or .package-header {
      background: linear-gradient(135deg, #d4af37, #ffd700);
      color: #1a1f36;
    }

    .package-saphir .package-header {
      background: linear-gradient(135deg, #0066cc, #0099ff);
    }

    .package-diamant .package-header {
      background: linear-gradient(135deg, #666666, #cccccc);
    }

    .package-price {
      padding: 20px;
      text-align: center;
      background: #f8f9fa;
      border-bottom: 2px solid #e0e0e0;
    }

    .price-amount {
      font-size: 32px;
      font-weight: 700;
      color: #1a1f36;
      margin: 0 0 5px;
    }

    .price-label {
      font-size: 14px;
      color: #666;
      margin: 0;
    }

    .package-content {
      padding: 25px;
      flex: 1;
    }

    .package-item {
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      color: #333;
      line-height: 1.6;
    }

    .package-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .package-item strong {
      display: block;
      color: #1a1f36;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .package-item em {
      display: block;
      color: #888;
      font-size: 12px;
      margin-top: 4px;
      font-style: italic;
    }

    .package-cta {
      padding: 20px;
      text-align: center;
      border-top: 2px solid #f0f0f0;
    }

    .reserve-btn {
      width: 100%;
      padding: 14px 20px;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }

    .package-bronze .reserve-btn {
      background: linear-gradient(135deg, #8b4513, #cd7f32);
      color: white;
    }

    .package-bronze .reserve-btn:hover {
      background: linear-gradient(135deg, #6b3410, #ad6f1f);
    }

    .package-or .reserve-btn {
      background: linear-gradient(135deg, #d4af37, #ffd700);
      color: #1a1f36;
    }

    .package-or .reserve-btn:hover {
      background: linear-gradient(135deg, #c49a2e, #e6c200);
    }

    .package-saphir .reserve-btn {
      background: linear-gradient(135deg, #0066cc, #0099ff);
      color: white;
    }

    .package-saphir .reserve-btn:hover {
      background: linear-gradient(135deg, #0052a3, #0073cc);
    }

    .package-diamant .reserve-btn {
      background: linear-gradient(135deg, #666666, #cccccc);
      color: white;
    }

    .package-diamant .reserve-btn:hover {
      background: linear-gradient(135deg, #555555, #aaaaaa);
    }

    .info-section {
      background: #f8f9fa;
      padding: 40px 20px;
      border-radius: 15px;
      margin-bottom: 40px;
    }

    .info-section h2 {
      font-size: 28px;
      color: #1a1f36;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 700;
    }

    .info-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .info-item {
      text-align: center;
    }

    .info-item h3 {
      color: #d4af37;
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .info-item p {
      color: #555;
      line-height: 1.8;
      font-size: 14px;
    }

    .footer-contact {
      background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
      color: white;
      padding: 40px 20px;
      text-align: center;
      border-radius: 15px;
      margin-top: 60px;
    }

    .footer-contact h2 {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .footer-contact p {
      margin: 10px 0;
      font-size: 16px;
    }

    .contact-link {
      color: #d4af37;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.3s ease;
    }

    .contact-link:hover {
      color: #ffd700;
    }

    @media (max-width: 768px) {
      .mariage-header h1 {
        font-size: 36px;
      }

      .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .price-amount {
        font-size: 24px;
      }

      .package-item {
        font-size: 13px;
      }
      /* hotel style*/
      .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD700;
    margin: 12px 0;
}

.reserve-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    background: #b8860b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.reserve-btn:hover {
    background: #8b6508;
}
    }

.hotel-gallery {
  max-width: 1180px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.section-heading-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.gallery-intro {
  margin-top: 10px;
  color: #4a4a4a;
  font-size: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.slider-container {
  position: relative;
}

.slides {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 20px;
}

.slide {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.slide-content {
  padding: 22px 18px 24px;
}

.slide-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(212, 175, 55, 0.15);
  color: #5d4a18;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.slide-content h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.slide-content p {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.6;
}

.gallery-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #5c5c5c;
}

.gallery-count {
  font-weight: 700;
  color: #1a1f36;
}

.gallery-note {
  max-width: 620px;
}

.room-detail-panel {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin: 30px 0 60px;
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.room-detail-media,
.room-detail-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.room-detail-media img {
  width: 100%;
  min-height: 360px;
  border-radius: 20px;
  object-fit: cover;
}

.room-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.detail-thumbnail {
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.detail-thumbnail img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}

.detail-thumbnail.active {
  border-color: #d4af37;
}

.room-detail-info h3 {
  margin: 0;
  font-size: 2rem;
  color: #1a1f36;
}

.detail-price {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
}

.room-detail-info p {
  margin: 0;
  line-height: 1.75;
  color: #4b4b4b;
}

.detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-features span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f4f7;
  color: #4b4b4b;
  font-size: 0.95rem;
}

.detail-actions {
  margin-top: 20px;
}

.detail-actions .reserve-btn {
  display: inline-block;
  padding: 12px 22px;
}

@media (max-width: 1040px) {
  .slides {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .room-detail-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .slides {
    grid-template-columns: 1fr;
  }

  .section-heading-wrap {
    text-align: left;
  }

  .gallery-intro {
    margin-left: 0;
    margin-right: 0;
  }

  .room-detail-panel {
    padding: 18px;
    margin: 24px 0 40px;
  }

  .room-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Wedding page header banner (uses Marriage.png) */
.mariage-header {
  position: relative;
  background-image: url('Marriage.png');
  background-size: cover;
  background-position: center center;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0 28px;
}
.mariage-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.32));
  z-index: 1;
}
.mariage-header img {
  width: 120px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}
.mariage-header h1 {
  margin: 6px 0 8px;
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.mariage-header p {
  margin: 0;
  z-index: 2;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 24px;
}

@media (max-width: 920px) {
  .mariage-header { height: 360px; }
  .mariage-header img { width: 96px; }
  .mariage-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .mariage-header { height: 260px; margin: 12px 0; }
  .mariage-header img { width: 72px; }
  .mariage-header h1 { font-size: 1.4rem; }
  .mariage-header p { font-size: 0.9rem; padding: 6px 10px; }
}

.mariage-flyer {
  margin: 0 0 50px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 31, 54, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.mariage-flyer img {
  width: 100%;
  height: auto;
  display: block;
}
