/* ============================================
   INFO PAGE — PREMIUM EFFECTS
   ============================================ */

.info-page {
  background: #0e0f14;
  color: #eef1f6;
  padding-bottom: 80px;
  position: relative;
  overflow-x: hidden;
}

/* ===== Floating Gold Dust (light animation) ===== */
.info-page::before {
  content:"";
  position: fixed;
  inset: 0;
  background: url('data:image/svg+xml;utf8,\
  <svg xmlns="http://www.w3.org/2000/svg" width="300" height="300">\
    <circle cx="10" cy="20" r="1" fill="rgba(224,176,104,0.25)"/>\
    <circle cx="260" cy="140" r="1" fill="rgba(224,176,104,0.25)"/>\
    <circle cx="150" cy="280" r="1" fill="rgba(224,176,104,0.22)"/>\
  </svg>') repeat;
  opacity: 0.08;
  animation: dustmove 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes dustmove {
  from { transform: translateY(0); }
  to   { transform: translateY(-300px); }
}

/* ============================================
   HEADER + GLOW
   ============================================ */

.info-head {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Soft gold glow behind title */
.info-title {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  background: linear-gradient(90deg,#fff,#ffe7be 40%,var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}
.info-title::after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:220px;
  height:220px;
  transform:translate(-50%,-50%);
  background: radial-gradient(circle, rgba(224,176,104,0.14), transparent 70%);
  filter: blur(18px);
  z-index:-1;
}

/* Subblock text */
.info-subblock h3 {
  margin: 20px 0 6px;
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}
.info-subblock p {
  color: #c9ceda;
  font-size: 14px;
  line-height: 1.4;
}

/* Divider glow */
.info-divider {
  width: 60px;
  height: 3px;
  margin: 25px auto 0;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(224,176,104,0.6);
}

/* ============================================
   VIDEO BLOCK + VIGNETTE
   ============================================ */

/* ============================
   VIDEO SECTION — CENTER ALIGNED
   ============================ */

.info-video {
  width: 100%;
  max-width: 900px;          /* perfect width */
  margin: 40px auto;         /* centers horizontally */
  display: flex;
  justify-content: center;   /* centers video */
  align-items: center;       /* vertical centering */
  position: relative;
  padding: 0 16px;           /* safe spacing on mobile */
}

/* Vignette glow */
.info-video::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0,0,0,.55), transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}

/* Centered video */
.info-video video {
  width: 100%;
  max-width: 100%;
  display: block;             /* removes inline gaps */
  margin: 0 auto;             /* ensures center */
  
  border-radius: 14px;
  border: 1px solid rgba(224,176,104,0.25);

  box-shadow:
    0 12px 34px rgba(0,0,0,.45),
    0 0 26px rgba(224,176,104,0.20);

  background: #000;
  overflow: hidden;

  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .9s ease forwards;
}

/* Smooth fade (shared) */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .info-video {
    padding: 0 12px;
    margin: 20px auto;
  }
  .info-video video {
    border-radius: 12px;
  }
}


/* ============================================
   SECTION TITLES
   ============================================ */

.info-sec-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  position: relative;
  margin-bottom: 4px;
}

.info-sec-title::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:160px;
  height:80px;
  transform:translateX(-50%);
  background: radial-gradient(circle, rgba(224,176,104,0.12), transparent 70%);
  filter:blur(20px);
  pointer-events:none;
}

.info-sec-sub {
  text-align: center;
  margin-top: 6px;
  color: var(--muted);
  letter-spacing: 1px;
}

.info-body {
  max-width: 880px;
  margin: 20px auto 40px;
  text-align: center;
  font-size: 1rem;
  color: #cfd3df;
  line-height: 1.7;
}

/* ============================================
   MASSEUSE GRID — PREMIUM
   ============================================ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 28px;
  margin-top: 40px;
}

.info-card {
  background: #171923;
  border-radius: 16px;
  border: 1px solid rgba(224,176,104,0.16);
  overflow: hidden;
  cursor: pointer;
  transition: .3s ease;
  position: relative;
}

/* Hover glow */
.info-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px rgba(224,176,104,0.28),
    0 18px 40px rgba(0,0,0,.55);
}

/* Shimmer animation */
.info-card::after {
  content:"";
  position:absolute;
  top:0; left:-120%;
  width:60%;
  height:100%;
  background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.18),
      transparent
  );
  transform:skewX(-20deg);
  transition: .4s;
}
.info-card:hover::after {
  left:120%;
}

/* Images */
.info-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(.92);
}

/* Card name */
.info-card-name {
  text-align: center;
  padding: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .5px;
}

/* ============================================
   LOCATION SECTION — PREMIUM
   ============================================ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.loc-card {
  background: #171923;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(224,176,104,0.18);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}

.loc-card h4 {
  color: var(--gold);
  margin-bottom: 6px;
}

.loc-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: 1px solid rgba(224,176,104,0.2);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}

/* ============================================
   TRANSPORT GRID
   ============================================ */

.transport-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.transport-col {
  text-align: center;
  color: #cfd3df;
  background:#171923;
  padding:22px;
  border-radius:14px;
  border:1px solid rgba(224,176,104,0.18);
  box-shadow:0 12px 34px rgba(0,0,0,.35);
}

.transport-col h4 {
  color: var(--gold);
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 780px){
  .location-grid {
    grid-template-columns: 1fr;
  }
  .transport-grid {
    grid-template-columns: 1fr;
  }
}
