/* mishracs.com — Premium Entertainment Events */
:root {
  --header-height: 72px;
  --color-bg: #0d0a0c;
  --color-surface: #1a1518;
  --color-surface-2: #251e22;
  --color-gold: #c9a227;
  --color-gold-light: #e8d48a;
  --color-gold-dark: #8b7312;
  --color-accent: #a82a2a;
  --color-accent-hover: #c43c3c;
  --color-text: #f2ebe8;
  --color-text-muted: #9a8f8a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 8px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-gold);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--header-height);
  background: rgba(13, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow:
    0 0 15px rgba(201, 162, 39, 0.35),
    0 0 30px rgba(201, 162, 39, 0.2),
    0 4px 20px rgba(201, 162, 39, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.logo:hover {
  color: var(--color-gold-light);
}
.logo__icon {
  display: flex;
  color: var(--color-gold);
}
.logo__icon svg {
  width: 42px;
  height: 42px;
}
.logo--footer .logo__icon svg {
  width: 36px;
  height: 36px;
}

/* ----- Desktop nav ----- */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link,
.nav__trigger {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}
.nav__link:hover,
.nav__trigger:hover {
  color: var(--color-gold);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: var(--color-surface);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--color-text);
  font-size: 0.9rem;
}
.nav__dropdown a:hover {
  color: var(--color-gold);
  background: rgba(201, 162, 39, 0.08);
}

/* ----- Burger (hidden by default, show at 991px and below) ----- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gold);
  transition: color var(--transition);
}
.burger:hover {
  color: var(--color-gold-light);
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----- Mobile menu ----- */
.mobile-menu {
  position: fixed;
  top: calc(var(--header-height) - 1px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: var(--color-surface);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  padding: 1.5rem 1.25rem 3rem;
}

.mobile-menu__section {
  margin-bottom: 1.5rem;
}

.mobile-menu__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu__section a {
  display: block;
  padding: 0.6rem 0;
  color: var(--color-text);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu__section a:hover {
  color: var(--color-gold);
}

/* Hide desktop nav, show burger at 991px and below */
@media (max-width: 991px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) 1.25rem 3rem;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__star,
.hero__circle {
  position: absolute;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero__star {
  display: inline-block;
  color: var(--color-gold-light);
  font-size: clamp(12px, 2.5vw, 22px);
  opacity: 0.9;
  animation-name: hero-twinkle;
}
/* Stars & circles only along perimeter (top, bottom, left, right edges) */
.hero__star:nth-child(1)  { top: 4%;   left: 8%;   animation-delay: 0s; }
.hero__star:nth-child(2)  { top: 6%;   right: 12%; animation-delay: 0.3s; }
.hero__star:nth-child(3)  { top: 5%;   left: 28%;  animation-delay: 0.6s; }
.hero__star:nth-child(4)  { top: 8%;   right: 28%; animation-delay: 0.2s; }
.hero__star:nth-child(5)  { top: 3%;   left: 55%;  animation-delay: 0.8s; }
.hero__star:nth-child(6)  { top: 7%;   right: 55%; animation-delay: 0.4s; }
.hero__star:nth-child(7)  { top: 5%;   left: 82%;  animation-delay: 0.1s; }
.hero__star:nth-child(8)  { top: 6%;   right: 85%; animation-delay: 0.5s; }
.hero__star:nth-child(9)  { top: 92%; left: 10%;  animation-delay: 0.7s; }
.hero__star:nth-child(10) { top: 94%; right: 15%; animation-delay: 0.25s; }
.hero__star:nth-child(11) { top: 96%; left: 35%;  animation-delay: 0.55s; }
.hero__star:nth-child(12) { top: 93%; right: 40%; animation-delay: 0.15s; }
.hero__star:nth-child(13) { top: 95%; left: 65%;  animation-delay: 0.65s; }
.hero__star:nth-child(14) { top: 91%; right: 72%; animation-delay: 0.35s; }
.hero__star:nth-child(15) { top: 94%; left: 90%;  animation-delay: 0.45s; }

.hero__circle {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation-name: hero-circle-pulse;
}
.hero__circle:nth-child(16) { left: 5%;  top: 18%;  animation-delay: 0s; }
.hero__circle:nth-child(17) { left: 6%;  top: 35%;  animation-delay: 0.4s; width: 6px; height: 6px; }
.hero__circle:nth-child(18) { left: 4%;  top: 55%;  animation-delay: 0.2s; background: rgba(232, 212, 138, 0.9); }
.hero__circle:nth-child(19) { left: 7%;  top: 78%;  animation-delay: 0.6s; width: 10px; height: 10px; }
.hero__circle:nth-child(20) { right: 5%;  top: 22%;  animation-delay: 0.1s; }
.hero__circle:nth-child(21) { right: 6%;  top: 42%;  animation-delay: 0.5s; width: 6px; height: 6px; }
.hero__circle:nth-child(22) { right: 4%;  top: 62%;  animation-delay: 0.3s; background: var(--color-gold-light); }
.hero__circle:nth-child(23) { right: 7%;  top: 82%;  animation-delay: 0.7s; width: 5px; height: 5px; }
.hero__circle:nth-child(24) { top: 25%;  left: 92%; animation-delay: 0.25s; }
.hero__circle:nth-child(25) { top: 45%;  left: 94%; animation-delay: 0.45s; width: 7px; height: 7px; }
.hero__circle:nth-child(26) { top: 68%;  left: 93%; animation-delay: 0.15s; }
.hero__circle:nth-child(27) { top: 88%;  left: 95%; animation-delay: 0.55s; width: 6px; height: 6px; }
.hero__circle:nth-child(28) { top: 15%;  right: 92%; animation-delay: 0.35s; background: rgba(232, 212, 138, 0.85); }
.hero__circle:nth-child(29) { top: 38%;  right: 94%; animation-delay: 0.65s; width: 5px; height: 5px; }
.hero__circle:nth-child(30) { top: 72%;  right: 93%; animation-delay: 0.2s; }

@keyframes hero-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

@keyframes hero-circle-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__card {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--color-surface-2);
  color: var(--color-gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.25);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.hero__card:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--color-gold);
  color: var(--color-text);
}

/* ----- Sections ----- */
.about,
.services,
.extras,
.quote {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 2rem;
  text-align: center;
}

.about {
  background: #0d0a0c;
  text-align: center;
}

.about__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #c9a227;
  margin: 0 0 1rem;
}

.about__text {
  color: var(--color-text-muted);
  margin: 0 auto 1.5rem;
  max-width: 800px;
}

.about__cta {
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}
.btn--primary {
  background: var(--color-gold);
  color: var(--color-bg);
}
.btn--primary:hover {
  background: var(--color-gold-light);
  color: var(--color-bg);
}

/* Services grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card,
.extra-card {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.12);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover,
.extra-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card h3,
.extra-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
}

.service-card p,
.extra-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.extras__grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
  gap: 1.5rem;
}

.quote {
  background: var(--color-surface);
}

.quote__intro {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quote__contact {
  text-align: center;
  font-size: 1.25rem;
  margin: 0;
}
.quote__contact a {
  color: var(--color-gold);
  font-weight: 600;
}

/* ----- Footer ----- */
.footer {
  background: var(--color-surface-2);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .logo--footer {
    justify-content: center;
  }
}

.footer__tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
  max-width: 320px;
}

@media (max-width: 768px) {
  .footer__tagline {
    max-width: none;
  }
}

.footer__links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
}

.footer__links p {
  margin: 0.25rem 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer__bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ----- Inner pages ----- */
.page-header {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 1.25rem 2rem;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  text-align: center;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header__title,
.page-header__lead {
  position: relative;
  z-index: 1;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}
.page-header__lead {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-content {
  padding: 3rem 0 4rem;
}
.page-content .container {
  max-width: 900px;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 2rem 0 0.75rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.65;
}
.page-content ul {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.7;
}
.page-content a { color: var(--color-surface-2); margin-top: 20px;}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-grid__item {
  aspect-ratio: 4/3;
  background: var(--color-surface-2);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote-form {
  max-width: 480px;
  margin: 2rem auto 0;
}
.quote-form label {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-list li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}
.faq-list li:first-child { padding-top: 0; }
.faq-list strong { color: var(--color-gold); display: block; margin-bottom: 0.35rem; }
.faq-list p { margin: 0; }

/* ----- Success modal ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 0.75rem;
}
.modal__text {
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}
.modal__close {
  margin: 0;
}
