/* ============================================
   SPOTLIGHT PAGE STYLES
   ============================================ */

.spotlight-page {
  background-color: var(--color-black);
  color: var(--color-yellow);
  height: 100vh;
  overflow: hidden;
}

.spotlight-page .navbar--mobile-only { display: none; }

.spotlight {
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-rows: 100vh;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.spotlight__content {
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
  padding: 30px;
  gap: 20px;
  overflow: hidden;
}

.spotlight__left {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  max-width: 600px;
}

.spotlight__left::-webkit-scrollbar { width: 0; display: none; }

.spotlight__title {
  font-family: var(--font-logo);
  font-size: 120px;
  font-weight: 400;
  color: var(--color-yellow);
  line-height: 0.85;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.spotlight__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight__coming-soon {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  opacity: 0.5;
  margin-bottom: 4px;
}

.spotlight__body p {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 155%;
  color: var(--color-yellow);
  text-align: left;
  letter-spacing: 0.02em;
  text-transform: none;
}

.spotlight__body strong { font-weight: 800; }

/* ========== SIDEBAR ========== */
.spotlight__sidebar {
  background-color: var(--color-yellow);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  color: var(--color-black);
}

.spotlight__sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  text-transform: none;
}

.spotlight__sidebar-email,
.spotlight__sidebar-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-black);
}

.spotlight__sidebar-socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.spotlight__sidebar-socials a {
  color: var(--color-black);
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.spotlight__sidebar-socials a:hover { opacity: 0.6; }

.spotlight__sidebar-nav {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 0;
}

.spotlight__sidebar-link {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
  text-transform: none;
}

.spotlight__sidebar-link:first-child { border-top: 1px solid rgba(0,0,0,0.2); }
.spotlight__sidebar-link:hover { opacity: 0.6; }

.spotlight__sidebar-link--active {
  font-weight: 700;
  background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
  padding: 14px 8px;
  margin: 0 -8px;
}

.spotlight__sidebar-icon { font-size: 18px; }

.spotlight__sidebar-logo {
  font-family: var(--font-logo);
  font-size: 80px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1;
  margin-top: auto;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.spotlight__sidebar-logo:hover { opacity: 0.7; }

/* ============================================
   TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .spotlight { grid-template-columns: 1fr 240px; }
  .spotlight__title { font-size: 72px; }
  .spotlight__sidebar-link { font-size: 18px; }
  .spotlight__sidebar-logo { font-size: 64px; }
}

/* ============================================
   MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  .spotlight-page { height: auto; overflow: visible; }

  .spotlight-page .navbar--mobile-only {
    display: flex;
    flex-wrap: wrap;
    padding: 20px var(--page-padding) 0;
    background-color: var(--color-black);
  }

  .spotlight-page .navbar--mobile-only .navbar__mobile-logo {
    display: block;
    color: var(--color-white);
    order: 1;
    flex: 1;
  }

  .spotlight-page .navbar--mobile-only .navbar__hamburger { display: flex; order: 2; }
  .spotlight-page .navbar--mobile-only .navbar__hamburger-line { background-color: var(--color-white); }

  .spotlight-page .navbar--mobile-only .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    order: 3;
    padding: 24px;
    background-color: var(--color-yellow);
    margin-top: 16px;
  }

  .spotlight-page .navbar--mobile-only .navbar__nav.is-open { display: flex; }

  .spotlight-page .navbar--mobile-only .navbar__link {
    font-size: 28px;
    font-weight: 600;
    padding: 8px 0;
    color: var(--color-black);
  }

  .spotlight {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
  }

  .spotlight__content {
    padding: 20px var(--page-padding);
  }

  .spotlight__sidebar { display: none; }
  .spotlight__left { overflow: visible; padding-top: 0; max-width: 100%; }
  .spotlight__title { font-size: 64px; margin-bottom: 20px; }
  .spotlight__body p { font-size: 14px; }

  .spotlight::after {
    content: 'BOOK A CALL';
    display: block;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
  }
}

@media (max-width: 480px) {
  .spotlight__title { font-size: 48px; }
  .spotlight__body p { font-size: 13px; }
  .spotlight::after { font-size: 36px; padding: 16px; }
}
