

/* HEADER */
.ambiance-header h2 {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

/* LAYOUT */
.ambiance-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT */
.ambiance-left p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* RIGHT */
.ambiance-right {
  background-color: var(--primary-blue);
  color:#fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ambiance-right h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* HIGHLIGHT */
.highlight-box {
  background: var(--primary-blue);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* LIST GRID */
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.list-item {
  background: #fff;
  padding: 12px;
  border-left: 4px solid var(--accent-red);
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 14px;
}

/* ================= GALLERY ================= */
.gallery-section {
  margin-top: 60px;
}

.gallery-section h2 {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

/* GRID */
/* GRID FIX */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center; /* 🔥 centers items horizontally */
}

/* CARD FIX */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}

/* IMAGE FIX */
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* TEXT FIX (IMPORTANT) */
.gallery-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(38, 52, 137, 0.9);
  color: #fff;
  padding: 10px;
  font-size: 14px;
  z-index: 2; /* 🔥 IMPORTANT */
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .ambiance-layout {
    grid-template-columns: 1fr;
  }

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

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

  .ambiance-header h2 {
    font-size: 24px;
  }
}