/* ============================================================
   Coming Soon — Page Styles
   Design: Figma node 490-14731
   ============================================================ */

/* ---------- Page shell ---------- */
.cs-page {
  background-color: var(--bt-bg);
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.cs-navbar {
  background: rgba(244, 241, 232, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}

.cs-navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.cs-navbar .cs-logo-icon {
  height: 52px;
  width: auto;
}

.cs-nav-link {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bt-text) !important;
  padding: 10px 14px !important;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s;
}

.cs-nav-link:hover {
  background: rgba(6, 98, 47, 0.08);
}

.cs-nav-link.active {
  background: linear-gradient(183.846deg, rgba(6, 98, 47, 0) 16.428%, rgba(6, 98, 47, 0.2) 90.452%);
  border-bottom: 2px solid var(--bt-teal-light);
  border-radius: 20px;
}

.cs-navbar .cs-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   HERO
   ============================================================ */
.cs-hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  background: url('/assets/img/coming-soon-hero.png') center center / cover no-repeat;
}

.cs-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  padding: 80px 20px;
}

/* Double-layer "COMING SOON!" text */
.cs-text-wrap {
  position: relative;
  display: inline-block;
  text-align: center;
}

.cs-text-shadow,
.cs-text-front {
  font-family: var(--font-section);   /* VN-Brenza */
  font-size: clamp(72px, 12vw, 160px);
  line-height: 1;
  font-weight: normal;
  text-align: center;
  display: block;
  white-space: nowrap;
}

/* Shadow layer: dark teal, slightly offset below-right */
.cs-text-shadow {
  position: absolute;
  top: 4px;
  left: 4px;
  color: var(--bt-text);   /* #005E52 */
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Front white layer */
.cs-text-front {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.cs-footer {
  background: linear-gradient(
    183.991deg,
    rgb(0, 168, 139)  10.007%,
    rgb(1, 117, 98)   23.366%,
    rgb(2, 68, 59)    72.234%,
    rgb(3, 20, 17)   111.47%
  );
  border-top: 3px solid var(--bt-gold);
  border-radius: 10px 10px 0 0;
  padding: 40px 64px 28px;
  color: #fff;
}

/* Newsletter row */
.cs-newsletter-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.27;
  color: #fff;
  margin-bottom: 6px;
}

.cs-newsletter-sub {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0;
}

.cs-email-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-size: 1rem;
  width: 320px;
  max-width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
}

.cs-email-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.cs-email-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 207, 69, 0.55);
  border-color: var(--bt-gold-bright);
}

.cs-subscribe-btn {
  background: var(--bt-gold-bright);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}

.cs-subscribe-btn:hover {
  background: #e5b800;
}

/* Footer divider */
.cs-footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 32px 0;
}

/* Logo block */
.cs-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cs-footer-logo-icon {
  height: 68px;
  width: auto;
  flex-shrink: 0;
}

.cs-footer-brand-text {
  font-family: var(--font-title);
  font-size: 3.8rem;
  line-height: 0.9;
  background: linear-gradient(
    -81.6133deg,
    rgb(217, 157, 40)   7.2731%,
    rgb(197, 148, 44)  17.51%,
    rgb(252, 242, 141) 45.391%,
    rgb(255, 207, 69)  70.175%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
}

.cs-footer-desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 380px;
}

/* Footer link columns */
.cs-links-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
}

.cs-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-links-list a {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.cs-links-list a:hover {
  color: var(--bt-gold-bright);
}

/* Footer bottom bar */
.cs-footer-bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cs-copyright {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.cs-social-icons {
  height: 32px;
  width: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .cs-footer {
    padding: 32px 24px 24px;
  }

  .cs-footer-brand-text {
    font-size: 2.8rem;
  }
}

@media (max-width: 767.98px) {
  .cs-hero {
    min-height: 360px;
  }

  .cs-hero-inner {
    min-height: 360px;
  }

  .cs-footer {
    padding: 24px 16px 20px;
  }

  .cs-email-input {
    width: 100%;
  }

  .cs-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
