@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;500&display=swap");

/* =========================================================
   DLG HOTEL DANANG - OFFERS LIST PAGE
   Clean static banner matched to room-detail hero with hotel kicker preserved.
   Scoped only to offers page, no header/footer interference.
========================================================= */

html,
body {
  margin: 0;
  padding: 0;
}

.dlg-offers-page {
  --offers-green: #0b6f78;
  --offers-dark: #07545c;
  --offers-gold: #bc955c;
  --offers-text: #283638;
  --offers-muted: #687476;
  --offers-soft: #f4f7f7;
  --offers-container: 1280px;
  --offers-gutter: 64px;

  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  color: var(--offers-text);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.dlg-offers-page *,
.dlg-offers-page *::before,
.dlg-offers-page *::after {
  box-sizing: border-box;
  font-synthesis: none;
}

.dlg-offers-page img {
  display: block;
  max-width: 100%;
}

.dlg-offers-page a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   HERO - EXACT ROOM DETAIL STYLE, STATIC, NO EFFECTS
========================================================= */

.dlg-offers-page .offers-hero {
  position: relative;
  width: 100%;
  height: clamp(430px, 52.5vw, 610px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.dlg-offers-page .offers-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: none;
  transition: none;
}

.dlg-offers-page .offers-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.15)),
    linear-gradient(to top, rgba(8, 95, 105, 0.52), rgba(8, 95, 105, 0.10) 47%, rgba(0, 0, 0, 0.06)),
    linear-gradient(to right, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.10));
}

.dlg-offers-page .offers-hero__content {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 77%;
  width: min(980px, calc(100% - 64px));
  margin: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.dlg-offers-page .offers-hero__kicker {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
}

.dlg-offers-page .offers-hero__title {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.018em;
  text-align: center;
  text-transform: none;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

/* Remove old/cached banner elements if browser still loads previous markup */
.dlg-offers-page .offers-hero__btn,
.dlg-offers-page .offers-hero .room-arrow,
.dlg-offers-page .offers-hero .room-dots,
.dlg-offers-page .offers-hero .swiper-button-prev,
.dlg-offers-page .offers-hero .swiper-button-next,
.dlg-offers-page .offers-hero .swiper-pagination,
.dlg-offers-page .offers-hero .slick-arrow,
.dlg-offers-page .offers-hero .slick-dots {
  display: none !important;
}

/* =========================================================
   CONTENT
========================================================= */

.dlg-offers-page .offers-section {
  margin: 0;
  padding: 84px 0 96px;
  background: #fff;
}

.dlg-offers-page .offers-container {
  width: min(var(--offers-container), calc(100% - var(--offers-gutter) * 2));
  margin: 0 auto;
}

.dlg-offers-page .offers-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.dlg-offers-page .offers-kicker,
.dlg-offers-page .offer-card__tag {
  display: block;
  color: var(--offers-gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dlg-offers-page .offers-heading h2 {
  margin: 14px 0 0;
  color: var(--offers-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.dlg-offers-page .offers-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--offers-muted);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0;
}

.dlg-offers-page .offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 34px;
}

.dlg-offers-page .offer-card {
  position: relative;
  min-width: 0;
}

.dlg-offers-page .offer-card__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.33 / 1;
  overflow: hidden;
  background: var(--offers-soft);
}

.dlg-offers-page .offer-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.dlg-offers-page .offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 0.72, 0.22, 1), filter 0.9s ease;
}

.dlg-offers-page .offer-card:hover .offer-card__image img {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.02);
}

.dlg-offers-page .offer-card:hover .offer-card__image::after {
  opacity: 1;
}

.dlg-offers-page .offer-card__body {
  padding: 22px 0 0;
}

.dlg-offers-page .offer-card__tag {
  margin-bottom: 12px;
}

.dlg-offers-page .offer-card h3 {
  margin: 0;
  color: var(--offers-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.005em;
  text-transform: none;
}

.dlg-offers-page .offer-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dlg-offers-page .offer-card h3 a:hover {
  color: var(--offers-gold);
}

.dlg-offers-page .offer-card p {
  margin: 14px 0 0;
  color: var(--offers-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0;
}

.dlg-offers-page .offer-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--offers-green);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.35s ease, transform 0.35s ease;
}

.dlg-offers-page .offer-card__link::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.dlg-offers-page .offer-card__link::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: left 0.35s ease;
}

.dlg-offers-page .offer-card__link:hover {
  color: var(--offers-gold);
  transform: translateX(4px);
}

.dlg-offers-page .offer-card__link:hover::before {
  width: 58px;
}

.dlg-offers-page .offer-card__link:hover::after {
  left: 51px;
}

/* =========================================================
   FADE-IN
========================================================= */

.dlg-offers-page .fadein-up {
  opacity: 0;
  transform: translateY(30px);
  animation: none;
  transition:
    opacity 0.92s cubic-bezier(0.22, 0.72, 0.22, 1),
    transform 0.92s cubic-bezier(0.22, 0.72, 0.22, 1);
  transition-delay: var(--fade-delay, 0ms);
  will-change: opacity, transform;
}

.dlg-offers-page .fadein-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dlg-offers-page .offers-hero__content.fadein-up {
  transform: translate(-50%, calc(-50% + 26px));
}

.dlg-offers-page .offers-hero__content.fadein-up.is-visible {
  transform: translate(-50%, -50%);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .dlg-offers-page {
    --offers-container: 1120px;
    --offers-gutter: 40px;
  }

  .dlg-offers-page .offers-grid {
    gap: 48px 28px;
  }
}

@media (max-width: 980px) {
  .dlg-offers-page {
    --offers-gutter: 32px;
  }

  .dlg-offers-page .offers-hero {
    height: 430px;
  }

  .dlg-offers-page .offers-section {
    padding: 64px 0 86px;
  }

  .dlg-offers-page .offers-heading {
    margin-bottom: 44px;
  }

  .dlg-offers-page .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }
}

@media (max-width: 620px) {
  .dlg-offers-page {
    --offers-gutter: 20px;
  }

  .dlg-offers-page .offers-hero {
    height: 390px;
  }

  .dlg-offers-page .offers-hero__bg {
    background-position: center center;
  }

  .dlg-offers-page .offers-hero__overlay {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05) 38%, rgba(0, 0, 0, 0.18)),
      linear-gradient(to top, rgba(8, 95, 105, 0.62), rgba(8, 95, 105, 0.14) 56%, rgba(0, 0, 0, 0.06));
  }

  .dlg-offers-page .offers-hero__content {
    top: 72%;
    width: calc(100% - 44px);
  }

  .dlg-offers-page .offers-hero__kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .dlg-offers-page .offers-hero__title {
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: 0.012em;
  }

  .dlg-offers-page .offers-section {
    padding: 52px 0 70px;
  }

  .dlg-offers-page .offers-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .dlg-offers-page .offers-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .dlg-offers-page .offers-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .dlg-offers-page .offer-card__image {
    aspect-ratio: 1.34 / 1;
  }

  .dlg-offers-page .offer-card__body {
    padding-top: 18px;
  }

  .dlg-offers-page .offer-card h3 {
    font-size: 20px;
    line-height: 1.28;
  }

  .dlg-offers-page .offer-card p {
    line-height: 1.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dlg-offers-page *,
  .dlg-offers-page *::before,
  .dlg-offers-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .dlg-offers-page .fadein-up,
  .dlg-offers-page .fadein-up.is-visible,
  .dlg-offers-page .offers-hero__content.fadein-up,
  .dlg-offers-page .offers-hero__content.fadein-up.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .dlg-offers-page .offers-hero__content.fadein-up,
  .dlg-offers-page .offers-hero__content.fadein-up.is-visible {
    transform: translate(-50%, -50%) !important;
  }
}
