.skydeck-section {
  position: relative;
  min-height: 90vh;
  margin-top: 5%;
  background: url("/assest/roof.jpg") center center / cover no-repeat;
  color: #ffffff;
}

/* Dark overlay */
.skydeck-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Small green label */
.skydeck-tag {
  display: inline-block;
  color: #22c55e;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Main heading */
.skydeck-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Description text */
.skydeck-desc {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 991px) {
  .skydeck-title {
    font-size: 44px;
  }

  .skydeck-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .skydeck-title {
    font-size: 34px;
  }

  .skydeck-tag {
    font-size: 12px;
  }
}

/* SKY DECK SECTION */
.cafe-section {
  padding: 80px 0;
  background: #ffffff;
}

/* IMAGE COLLAGE */
.image-collage {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.top-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.top-images img,
.bottom-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.top-images img {
  height: 200px;
}

.bottom-image img {
  height: 320px;
}

/* BUTTON */
.dark-btn {
  display: inline-block;
  background: #a57c1b;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.3s ease;
}

.dark-btn:hover {
  background: #d4af37;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cafe-section {
    margin-top: 15%;
  }
  .top-images img {
    height: 160px;
  }

  .bottom-image img {
    height: 240px;
  }
}



.skydeck-moments {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
   color: #6e2611;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
}

/* IMAGE CARDS */
.moment-card {
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VARIANTS */
.moment-card.wide {
  height: 300px;
}

.moment-card.tall {
  height: 100%;
  min-height: 580px;
}

/* CAPTION */
.caption {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #fff;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* VIDEO CARD */
.video-card video {
  width: 100%;
  height: 79%;
  object-fit: cover;
  border-radius: 22px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .moment-card.tall {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .skydeck-moments{
    padding: 40px 0px;
  }
  .section-title {
    font-size: 28px;
  }

  .moment-card,
  .moment-card.wide {
    height: 220px;
  }
}
