/* ==========================
   ENTERTAINMENT SECTION
========================== */
.entertainment {
  width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .entertainment {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.entertainment img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

/* ==========================
   GRID LAYOUT
========================== */
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 2000px;
  margin: 0 auto;
  padding: 20px;
}

/* ==========================
   ENTERTAINMENT CARD
========================== */
.entertainment-col {
  width: 100%;
  max-width: 350px;
  min-width: 260px;
  height: auto;
  background: #edbca5;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.entertainment-col img {
  width: 75%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
}

.entertainment-col h1 {
  font-weight: 800;
  font-size: 1.7rem;
  text-align: center;
  margin: 12px 0;
  line-height: 1.3;
}

.entertainment-col h3 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  width: 100%;
  margin: 8px 0;
  line-height: 1.4;
}

.entertainment-col p,
.entertainment-col ul {
  text-align: left;
  width: 90%;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #2e2e2e;
}

/* Mobile card sizing */
@media (max-width: 768px) {
  .entertainment-col {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

/* ==========================
   TELEPORT BUTTON (Shared Button Style)
========================== */
.tel-btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fc7651;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fc7651;
  transition: all 0.3s ease;
}

.tel-btn:hover {
  background: #d64d28;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
