/* ==========================================================================
   La Marina Hotel — Security / Fraud Notice
   Standalone stylesheet — safe to paste into Bricks Builder's
   "Custom CSS" field or enqueue as its own file.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600;700;800&display=swap');

.lm-notice {
  --lm-navy: #0F3A4D;
  --lm-navy-dark: #0B2B38;
  --lm-gold: #F8D96B;
  --lm-gold-deep: #EAB94B;
  --lm-blue: #4FA9C7;
  --lm-teal: #0F6D8F;
  --lm-red: #B23A3A;
  --lm-red-bg: #FBEAEA;
  --lm-green: #4F7D59;
  --lm-green-bg: #EEF4EC;
  --lm-ink: #1F2933;
  --lm-muted: #5b6470;
  --lm-cream: #FAF8F5;

  box-sizing: border-box;
  background: var(--lm-cream);
  color: var(--lm-ink);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.lm-notice *,
.lm-notice *::before,
.lm-notice *::after {
  box-sizing: border-box;
}

/* -- top brand bar -------------------------------------------------------- */

.lm-notice__topbar {
  background: var(--lm-navy);
  padding: 18px clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lm-notice__logo {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.lm-notice__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

/* -- layout ---------------------------------------------------------------- */

.lm-notice__container {
  max-width: 992px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(20px, 5vw, 32px) 80px;
}

/* -- language switch -------------------------------------------------------- */

.lm-notice__langs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 34px;
}

.lm-notice__lang-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 58, 77, 0.2);
  background: #fff;
  color: var(--lm-navy);
  cursor: pointer;
  transition: all 0.2s;
}

.lm-notice__lang-btn.is-active {
  background: var(--lm-navy);
  color: #fff;
  border-color: var(--lm-navy);
}

/* -- language panels: shown/hidden purely with CSS, driven by the
      [data-lm-lang] attribute on the root wrapper ------------------------- */

.lm-notice[data-lm-lang="vi"] [data-lm-content="en"] {
  display: none;
}

.lm-notice[data-lm-lang="en"] [data-lm-content="vi"] {
  display: none;
}

/* -- alert badge -------------------------------------------------------- */

.lm-notice__badge-row {
  text-align: center;
  margin-bottom: 20px;
}

.lm-notice__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--lm-red-bg);
  color: var(--lm-red);
  border: 1px solid rgba(178, 58, 58, 0.22);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* -- headline -------------------------------------------------------- */

.lm-notice__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.18;
  text-align: center;
  color: var(--lm-navy);
  margin: 0 0 14px;
}

.lm-notice__intro {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--lm-muted);
  text-align: center;
  /* max-width: 560px; */
  margin: 0 auto 40px;
}

/* -- section label -------------------------------------------------------- */

.lm-notice__section {
  margin-bottom: 40px;
}

.lm-notice__section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lm-teal);
  text-transform: uppercase;
  margin: 0 0 16px;
}

/* -- "3 KHÔNG" rules -------------------------------------------------------- */

.lm-notice__rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.lm-notice__rule {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 58, 77, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 14px 34px -26px rgba(15, 58, 77, 0.4);
}

.lm-notice__rule-mark {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lm-red-bg);
  color: var(--lm-red);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-notice__rule-text {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #324049;
  font-weight: 500;
}

/* -- official contact card -------------------------------------------------------- */

.lm-notice__card {
  background: #fff;
  border: 1px solid rgba(15, 109, 143, 0.12);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 20px 50px -32px rgba(15, 109, 143, 0.5);
}

.lm-notice__contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(15, 58, 77, 0.06);
  transition: background 0.2s;
  flex-wrap: wrap;
}

.lm-notice__contact-row:hover {
  background: var(--lm-cream);
}

.lm-notice__contact-row--fanpage {
  border-bottom: none;
  background: #FBF6E8;
  border-radius: 0 0 12px 12px;
}

.lm-notice__contact-row--fanpage:hover {
  background: #F8ECC8;
}

.lm-notice__contact-icon {
  font-size: 22px;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EEF6F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-notice__contact-icon--fanpage {
  background: var(--lm-gold);
}

.lm-notice__contact-body {
  flex: 1;
  flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
}

.lm-notice__contact-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9aa4ac;
  margin-bottom: 2px;
}

.lm-notice__contact-value {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--lm-ink);
}

.lm-notice__fanpage-flag {
  flex: 0 0 auto;
  background: var(--lm-navy);
  color: var(--lm-gold);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  max-width: 1220px;
  line-height: 1.3;
  text-align: center;
}

/* -- official bank info -------------------------------------------------------- */

.lm-notice__bank-note {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--lm-green);
  font-weight: 600;
  margin: 0 0 14px;
  background: var(--lm-green-bg);
  border-radius: 12px;
  padding: 12px 16px;
}

.lm-notice__banks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lm-notice__bank {
  background: var(--lm-navy);
  border-radius: 16px;
  padding: 20px 22px;
  color: #fff;
}

.lm-notice__bank-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.lm-notice__bank-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lm-gold);
}

.lm-notice__bank-badge {
  background: rgba(248, 217, 107, 0.16);
  color: var(--lm-gold);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.lm-notice__bank-holder {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lm-notice__bank-number {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
}

/* -- closing -------------------------------------------------------- */

.lm-notice__closing {
  text-align: center;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--lm-green);
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto;
}

/* -- footer -------------------------------------------------------- */

.lm-notice__footer {
  background: var(--lm-navy-dark);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 26px 20px;
  font-size: 14px;
}


@media (max-width: 768px) {
  .lm-notice__contact-body {
   flex-direction: column;
        gap: 0.5rem;
        justify-content: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        align-items: baseline;
  }
}