/* ============================================================
   EQ KUALA LUMPUR — Link Page Styles
   Brand: Deep black + champagne gold + Cormorant Garamond
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- TOKENS ---------- */
:root {
  --gold:        #C4A35A;
  --gold-light:  #DFC07A;
  --gold-dim:    rgba(196, 163, 90, 0.35);
  --gold-faint:  rgba(196, 163, 90, 0.08);
  --black:       #09090A;
  --dark:        #111112;
  --card:        #161617;
  --card-hover:  #1C1C1E;
  --border:      rgba(196, 163, 90, 0.18);
  --border-hover:rgba(196, 163, 90, 0.50);
  --text:        #EAE6DE;
  --text-muted:  #8A8478;
  --white:       #F5F2EC;
}

/* ---------- BASE ---------- */
html {
  background-color: #09090A;          /* fallback before body paints */
}

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* atmospheric glow */
  background-image:
    radial-gradient(ellipse 90% 40% at 50% 0%,   rgba(196,163,90,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 35% at 85% 100%, rgba(196,163,90,0.06) 0%, transparent 50%);
}

/* ---------- LAYOUT ---------- */
.container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 52px 24px 72px;
}

/* ---------- HEADER ---------- */
.header {
  text-align: center;
  margin-bottom: 32px;
  animation: fadeDown 0.7s ease both;
}

.logo-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  background-color: var(--gold-faint);
}

.logo-ring::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,90,0.15);
}

.logo-eq {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hotel-sub {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- DIVIDER ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  animation: fadeIn 1s ease 0.4s both;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.diamond {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- SECTION LABELS ---------- */
.section-label {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 28px 0 12px;
  animation: fadeIn 0.6s ease both;
}

/* ---------- SECTION SEPARATOR ---------- */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.15), transparent);
  margin: 24px 0 0;
}

/* ---------- LINK GROUPS ---------- */
.links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---------- INDIVIDUAL LINK CARD ---------- */
.link-item {
  display: block;
  text-decoration: none;
  color: var(--text);              /* override browser blue */
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 14px 18px 14px 20px;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.3s ease,
    border-color     0.3s ease,
    transform        0.25s ease;
  animation: fadeUp 0.5s ease both;
}

/* left accent bar */
.link-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* subtle inner glow */
.link-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196,163,90,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.link-item:hover {
  background-color: var(--card-hover);
  border-color: var(--border-hover);
  transform: translateX(4px);
  color: var(--text);
}

.link-item:hover::before { opacity: 1; }
.link-item:hover::after  { opacity: 1; }

/* featured variant */
.link-item.featured {
  background-color: #191810;
  border-color: rgba(196,163,90,0.30);
}

/* ---------- LINK INTERNALS ---------- */
.link-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.link-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.link-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: border-color 0.3s;
}

.link-item:hover .link-icon {
  border-color: var(--gold);
}

.link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.link-title {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.link-item.featured .link-title {
  color: var(--gold-light);
}

.link-desc {
  display: block;
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.link-item:hover .link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ---------- CONTACT BLOCK ---------- */
.contact-block {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 22px 20px;
  animation: fadeUp 0.5s ease 0.3s both;
}

.contact-label {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-row a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-row a:hover {
  color: var(--gold);
}

/* ---------- SOCIAL BUTTONS ---------- */
.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  animation: fadeIn 0.8s ease 0.5s both;
}

.social-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background-color: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition:
    border-color    0.3s ease,
    color           0.3s ease,
    background-color 0.3s ease;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: var(--gold-faint);
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(196,163,90,0.10);
  animation: fadeIn 1s ease 0.8s both;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-awards {
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(138,132,120,0.5);
  line-height: 1.9;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* stagger link cards */
.links-group .link-item:nth-child(1) { animation-delay: 0.08s; }
.links-group .link-item:nth-child(2) { animation-delay: 0.16s; }
.links-group .link-item:nth-child(3) { animation-delay: 0.24s; }
.links-group .link-item:nth-child(4) { animation-delay: 0.32s; }
.links-group .link-item:nth-child(5) { animation-delay: 0.40s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
  .container {
    padding: 36px 16px 60px;
  }
  .link-desc {
    white-space: normal;
  }
}
