﻿/**
 * Namaskar Morocco â€“ Artists, Fashion & Leadership
 * PDF palette: deep navy, metallic gold, cream parchment
 */

 :root {
  --nm-navy: #051c2c;
  --nm-navy-deep: #001a2c;
  --nm-navy-panel: #1a365d;
  --nm-gold: #c5a059;
  --nm-gold-light: #d4af37;
  --nm-gold-dark: #a67c00;
  --nm-cream: #fdf5e6;
  --nm-parchment: #e8dcc4;
  --nm-maroon: #800000;
  --nm-text: #2c2416;
  --nm-text-light: #f5f0e8;
  --nm-white: #ffffff;
  --nm-border-gold: rgba(197, 160, 89, 0.45);
}

/* Override legacy theme tokens */
body.nm-theme,
.nm-artists-page,
.nm-fashion-page,
.nm-leadership-page,
.nm-artist-single {
  --primary-color: var(--nm-gold);
  --secondary-color: var(--nm-navy);
  --color-one: var(--nm-gold);
  --hover-color: var(--nm-gold-light);
}

/* ========== Artists Lineup Grid ========== */
.nm-artists-page {
  background: var(--nm-cream);
}

.nm-artists-header {
  text-align: center;
  padding: 3rem 0 2rem;
  background: var(--nm-parchment);
  border-bottom: 3px solid var(--nm-gold);
}

.nm-artists-header__eyebrow {
  color: var(--nm-maroon);
  font-family: "FuturaPT-Bold", serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.nm-artists-header__title {
  color: var(--nm-navy);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
  font-family: "FuturaPT-Bold", Georgia, serif;
}

.nm-artists-header__meta {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--nm-navy-panel);
}

.nm-artists-header__day {
  display: inline-block;
  background: var(--nm-gold);
  color: var(--nm-navy-deep);
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  font-family: "FuturaPT-Bold", sans-serif;
  margin-right: 0.75rem;
}

.nm-artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  padding: 3rem 0;
}

.nm-artists-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.nm-artist-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--nm-navy-deep);
  box-shadow: 0 8px 24px rgba(5, 28, 44, 0.2);
  transition: transform 0.25s ease;
}

.nm-artist-card:hover {
  transform: translateY(-4px);
}

.nm-artist-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.nm-artist-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.nm-artist-card__image img,
.nm-artist-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nm-artist-card__placeholder {
  background: linear-gradient(145deg, var(--nm-navy-panel), var(--nm-navy));
}

.nm-artist-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(5, 28, 44, 0.92));
  color: var(--nm-gold);
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2rem 0.75rem 0.75rem;
  text-align: center;
  margin: 0;
}

.nm-artists-section-title {
  text-align: center;
  color: var(--nm-navy);
  font-size: 2rem;
  margin: 2rem 0 1.5rem;
  position: relative;
}

.nm-artists-section-title::before,
.nm-artists-section-title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--nm-gold);
  vertical-align: middle;
  margin: 0 1rem;
}

/* ========== Single Artist Profile ========== */
.nm-artist-single {
  background: var(--nm-cream);
}

.nm-artist-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid var(--nm-border-gold);
  box-shadow: 0 12px 40px rgba(5, 28, 44, 0.15);
}

.nm-artist-profile--dark .nm-artist-profile__sidebar {
  background: var(--nm-navy-deep);
  color: var(--nm-text-light);
}

.nm-artist-profile--dark .nm-artist-profile__main {
  background: var(--nm-cream);
}

.nm-artist-profile__sidebar {
  background: var(--nm-navy-deep);
  color: var(--nm-text-light);
  padding: 2rem;
}

.nm-artist-profile__photo {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem;
}

.nm-artist-profile__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.nm-artist-profile__name {
  color: var(--nm-gold);
  font-family: "FuturaPT-Bold", Georgia, serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.nm-artist-profile__subtitle {
  color: var(--nm-gold-light);
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.nm-artist-profile__quote {
  border-left: 3px solid var(--nm-gold);
  padding-left: 1rem;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.9);
  margin-top: 2rem;
}

.nm-artist-profile__main {
  padding: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--nm-text);
}

.nm-artist-profile__main h2,
.nm-artist-profile__main h3 {
  color: var(--nm-navy);
  font-family: "FuturaPT-Bold", sans-serif;
}

/* ========== Fashion Show Gallery ========== */
.nm-fashion-page {
  background: var(--nm-parchment);
}

.nm-fashion-hero {
  background: var(--nm-cream);
  padding: 3rem 0;
  text-align: center;
}

.nm-fashion-hero__title {
  color: var(--nm-navy);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 0;
  font-family: "FuturaPT-Bold", Georgia, serif;
}

.nm-fashion-hero__subtitle {
  color: var(--nm-maroon);
  font-size: 1.6rem;
  margin: 0.75rem 0 0;
  font-style: italic;
}

.nm-fashion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.nm-fashion-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.nm-fashion-showcase {
  margin: 0;
  overflow: hidden;
  background: var(--nm-white);
  box-shadow: 0 16px 40px rgba(5, 28, 44, 0.14);
}

.nm-fashion-showcase--full {
  grid-column: 1 / -1;
}

.nm-fashion-showcase img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.nm-fashion-card {
  background: var(--nm-white);
  border: 1px solid var(--nm-border-gold);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.nm-fashion-card:hover {
  box-shadow: 0 12px 32px rgba(5, 28, 44, 0.12);
}

.nm-fashion-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.nm-fashion-card__image--wide {
  aspect-ratio: auto;
  min-height: 320px;
}

.nm-fashion-card--large .nm-fashion-card__image img {
  min-height: 360px;
}

.nm-fashion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nm-fashion-card__body {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--nm-navy-deep);
  color: var(--nm-gold);
}

.nm-fashion-card__title {
  margin: 0 0 0.25rem;
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.4rem;
  color: var(--nm-gold);
}

.nm-fashion-card__designer {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.75);
}

.nm-fashion-quote {
  text-align: center;
  padding: 2.5rem;
  background: var(--nm-navy-panel);
  color: var(--nm-gold);
  font-family: "FuturaPT-Bold", Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
  margin: 2rem 0;
}

/* ========== Leadership Page (Ram Jajodia) ========== */
.nm-leadership-page {
  background: var(--nm-navy-deep);
  color: var(--nm-text-light);
}

.nm-leadership-hero {
  padding: 4rem 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.15) 0%, transparent 55%),
    var(--nm-navy-deep);
  border-bottom: 1px solid var(--nm-border-gold);
}

.nm-leadership-hero--organiser {
  padding-top: 3rem;
}

.nm-leadership-hero--organiser .nm-leadership-hero__eyebrow {
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--nm-gold);
  font-size: 2.4rem;
  font-family: "FuturaPT-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .nm-leadership-hero--organiser .nm-leadership-hero__eyebrow {
    font-size: 2rem;
  }
}

.nm-leadership-hero__title {
  color: var(--nm-gold);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin: 0;
  font-family: "FuturaPT-Bold", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nm-leadership-hero__ribbon {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 2rem;
  background: var(--nm-gold);
  color: var(--nm-navy-deep);
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nm-leadership-intro {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.9);
}

.nm-leadership-intro p:last-child {
  margin-bottom: 0;
}

.nm-leadership-profile {
  padding: 3rem 0 2rem;
}

.nm-leadership-profile__layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.nm-leadership-profile__sidebar {
  position: sticky;
  top: 2rem;
}

.nm-leadership-profile__photo {
  max-width: 450px;
  margin: auto;
  padding: 5px;
  border: 2px solid var(--nm-gold);
  border-radius: 22px;
  overflow: hidden;
  background: var(--nm-navy-deep);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(197, 160, 89, 0.55);
  margin-bottom: 1.25rem;
}

.nm-leadership-profile__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--nm-gold);
}

.nm-leadership-profile__quals {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  color: var(--nm-gold-light);
  letter-spacing: 0.06em;
  text-align: center;
}

.nm-leadership-profile__designation {
  margin: 0 0 0.5rem;
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--nm-gold);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.04em;
}

.nm-leadership-profile__company {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-family: "FuturaPT-Bold", sans-serif;
  color: var(--nm-text-light);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.14em;
}

.nm-leadership-profile__subheading {
  margin: 0 0 1.25rem;
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.6rem;
  color: var(--nm-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nm-leadership-profile__subheading--main {
  margin-top: 2.5rem;
}

.nm-leadership-achievements {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nm-leadership-achievements__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.92);
}

.nm-leadership-achievements__icon {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  border: 2px solid var(--nm-gold);
  background: radial-gradient(circle at 30% 30%, var(--nm-gold-light), var(--nm-gold-dark));
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.35);
}

.nm-leadership-ventures {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nm-leadership-venture {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--nm-border-gold);
  border-radius: 10px;
  background: rgba(26, 54, 93, 0.35);
}

.nm-leadership-venture__media {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--nm-border-gold);
}

.nm-leadership-venture__media img {
  width: 100%;
  /* height: 120px;
  object-fit: cover; */
  display: block;
  max-width: 80px;
  max-height: 80px;
  margin: auto;
}

.nm-leadership-venture__title {
  margin: 0 0 0.5rem;
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.5rem;
  color: var(--nm-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nm-leadership-venture__text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.88);
}

.nm-leadership-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.nm-leadership-pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nm-leadership-pill-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.9);
}

.nm-leadership-pill-list li::before {
  content: "â—†";
  position: absolute;
  left: 0;
  color: var(--nm-gold);
  font-size: 0.85rem;
  top: 0.15rem;
}

.nm-leadership-commitment {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid var(--nm-border-gold);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(5, 28, 44, 0.6) 100%);
}

.nm-leadership-commitment p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.9);
}

.nm-leadership-featured {
  padding: 2rem 0 4rem;
}

.nm-leadership-featured__heading {
  text-align: center;
  color: var(--nm-gold);
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  font-family: "FuturaPT-Bold", sans-serif;
}

.nm-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nm-leadership-card {
  background: var(--nm-cream);
  color: var(--nm-text);
  border: 2px solid var(--nm-border-gold);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.nm-leadership-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.nm-leadership-card__body {
  padding: 1.75rem;
}

.nm-leadership-card__name {
  color: var(--nm-navy);
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.nm-leadership-card__role {
  color: var(--nm-gold-dark);
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.nm-leadership-card__excerpt {
  font-size: 1.4rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.nm-leadership-card__link {
  color: var(--nm-navy-panel);
  font-family: "FuturaPT-Bold", sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
}

.nm-leadership-card__link:hover {
  color: var(--nm-gold-dark);
}

/* Decorative gold divider */
.nm-gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 400px;
}

.nm-gold-divider::before,
.nm-gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--nm-gold);
}

.nm-gold-divider__diamond {
  color: var(--nm-gold);
  font-size: 1.2rem;
}

/* Updated global banner for new palette */
.nm-page-banner {
  background: linear-gradient(135deg, var(--nm-navy-deep) 0%, var(--nm-navy) 60%, var(--nm-navy-panel) 100%);
}

.nm-page-banner::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(128, 0, 0, 0.06) 0%, transparent 40%);
}

.nm-page-banner__title {
  color: var(--nm-gold);
  font-family: "FuturaPT-Bold", Georgia, serif;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .nm-artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nm-fashion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-artist-profile {
    grid-template-columns: 1fr;
  }

  .nm-leadership-grid {
    grid-template-columns: 1fr;
  }

  .nm-leadership-card {
    grid-template-columns: 1fr;
  }

  .nm-leadership-profile__layout {
    grid-template-columns: 1fr;
  }

  .nm-leadership-profile__sidebar {
    position: static;
    text-align: center;
  }

  .nm-leadership-profile__photo {
    max-width: 280px;
    margin: 0 auto 1.25rem;
  }

  .nm-leadership-highlights {
    grid-template-columns: 1fr;
  }

  .nm-leadership-venture {
    grid-template-columns: 1fr;
  }

  .nm-leadership-venture__media img {
    height: 180px;
  }
}
h2.nm-leadership-hero__eyebrow {
  color: var(--nm-gold);
}
@media (max-width: 575px) {
  .nm-artists-grid,
  .nm-artists-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-fashion-grid {
    grid-template-columns: 1fr;
  }
}
