/* guest_promo.css - clean card grid */
:root {
  --bg: #fff;
  --muted: black;
  --accent: #1766c6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
body { margin:0; color:#0f172a; padding:28px; }
.wrap { max-width:1100px; margin:0 auto; }
.guest-header { text-align:center; margin-bottom:20px; }
.guest-header h1 { margin:0; font-size:28px; }
.guest-header p { margin:6px 0 0 0; color:var(--muted); }

/* Promo images should not be cropped */
#cards .card img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  background-color: #fff;
}

/* Force promo images to fully show (not cropped) */
.promo-card .promo-img img {
  height: auto !important;
  object-fit: contain !important;
  max-height: 300px; /* optional: prevents huge images */
  background-color: #fff;
}


.cards-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.promo-card {
  background:white;
  border-radius:8px;
  border:0.5px solid rgba(0, 0, 0, 0.1);
  box-shadow:0 8px 10px rgba(76, 77, 78, 0.048);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  animation: fadeInTitle 0.8s ease forwards;
}

.promo-img img { width:100%; height:180px; object-fit:cover; display:block; }
.promo-body { padding:14px; display:flex; flex-direction:column; gap:8px; }
.promo-body h3 { margin:0; font-size:16px; }
.promo-body p { margin:0; color:var(--muted); font-size:14px; line-height:1.4; }
.promo-body small { color:#9aa3b2; margin-top:auto; }

/* responsive */
@media (max-width:980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:620px) {
  .cards-grid { grid-template-columns: 1fr; }
  body { padding:14px; }
}



.see-more-btn {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.see-more-btn:hover {
  text-decoration: underline;
}


h1 {

  font-size: 44px;
  color: black; /* golden color */
  text-align: center;
  margin: 20px 0 35px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  animation: fadeInTitle 0.8s ease forwards;
}

/* Optional underline for style */
h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 🪶 Animation */
@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Fade-in Scroll Animation === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
  