/* Mont Clair Casino Hotel — Editorial shell
   Header, primary navigation, mobile drawer, footer. */

.mc-utilityStrip {
  background: var(--mc-night-raised);
  border-bottom: var(--mc-rule);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.mc-utilityStrip__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  color: var(--mc-stone);
}

.mc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 21, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: var(--mc-rule);
}

.mc-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.mc-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--mc-paper);
}

.mc-brand__img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.mc-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--mc-radius-sm);
  object-fit: contain;
  background: var(--mc-night-raised);
}

.mc-brand__name {
  font-family: var(--mc-font-head);
  font-size: 1.05rem;
  line-height: 1.15;
}

.mc-brand__name em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mc-brass-soft);
}

/* Header Search Styles */
.mc-header-search {
  position: relative;
  margin-left: auto;
  margin-right: 1rem;
}

.mc-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.mc-search-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 6px 14px 6px 34px;
  color: var(--mc-paper, #ffffff);
  font-size: 0.85rem;
  outline: none;
  width: 180px;
  transition: all 0.3s ease;
}

.mc-search-input:focus {
  width: 240px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.mc-search-icon {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  fill: #d4af37;
  pointer-events: none;
}

.mc-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 380px;
  overflow-y: auto;
  background: #141820;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 8px;
  backdrop-filter: blur(12px);
}

.mc-search-result-item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #e2e8f0;
  transition: background 0.2s ease;
}

.mc-search-result-item:hover,
.mc-search-result-item:focus {
  background: rgba(212, 175, 55, 0.15);
  outline: none;
}

.mc-search-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  margin-bottom: 4px;
}

.mc-search-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

.mc-search-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.3;
  margin-top: 2px;
}

.mc-search-empty {
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.mc-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
}

.mc-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.9rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-nav__link {
  font-family: var(--mc-font-head);
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--mc-paper);
  padding: 0.4em 0.1em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mc-nav__link:hover,
.mc-nav__link[aria-current="page"] {
  border-color: var(--mc-brass-soft);
  color: var(--mc-brass-soft);
}

.mc-navToggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--mc-radius-sm);
  border: 1px solid var(--mc-line);
  background: transparent;
  color: var(--mc-paper);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mc-navToggle__bar {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mc-navToggle[aria-expanded="true"] .mc-navToggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mc-navToggle[aria-expanded="true"] .mc-navToggle__bar:nth-child(2) {
  opacity: 0;
}

.mc-navToggle[aria-expanded="true"] .mc-navToggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mc-navClose {
  display: none;
}

/* Footer */
.mc-footer {
  background: #ffffff !important;
  color: #12151a !important;
  padding-block: 4rem 3rem;
  border-top: 1px solid #e5e5e5;
  font-family: var(--mc-font-body);
}

.mc-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.mc-footer-left {
  flex: 1.2;
}

.mc-footer-right {
  flex: 0.8;
}

.mc-footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
}

.mc-footer-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #12151a !important;
  margin-top: 0;
  margin-bottom: 2rem;
}

.mc-footer-reach {
  font-weight: 600;
  font-size: 0.95rem;
  color: #12151a !important;
  margin-top: 0;
  margin-bottom: 1rem;
}

.mc-footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #12151a !important;
}

.mc-footer-contact-col {
  color: #12151a !important;
}

.mc-footer-contact-col a {
  color: #12151a !important;
  text-decoration: underline !important;
  font-weight: 500;
}

.mc-footer-contact-col a:hover {
  color: var(--mc-maple) !important;
}

.mc-footer-explore-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #12151a !important;
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.mc-footer-links-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr 1fr;
  gap: 1rem 1.5rem;
}

.mc-footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mc-footer-links-col a {
  font-size: 0.9rem;
  color: #12151a !important;
  text-decoration: none !important;
  font-weight: 500;
}

.mc-footer-links-col a:hover {
  text-decoration: underline !important;
  color: var(--mc-maple) !important;
}

.mc-footer-divider {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mc-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  font-size: 0.75rem;
  color: #666666 !important;
  line-height: 1.45;
}

.mc-footer-bottom-row p {
  color: #666666 !important;
}

.mc-footer-disclaimer {
  flex: 1.2;
  margin: 0;
}

.mc-footer-copy {
  flex: 0.8;
  text-align: right;
  margin: 0;
  white-space: nowrap;
}

.mc-cookie-settings-btn {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font: inherit !important;
  color: inherit !important;
  cursor: pointer !important;
  text-decoration: underline !important;
}

.mc-cookie-settings-btn:hover {
  color: var(--mc-maple) !important;
}

@media (max-width: 991px) {
  .mc-footer-main {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .mc-footer-left {
    width: 100%;
  }
  
  .mc-footer-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mc-footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .mc-footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .mc-footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mc-footer-copy {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 1023px) {
  .mc-utilityStrip {
    display: none;
  }

  .mc-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 380px);
    height: 100vh;
    background: var(--mc-night-raised);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease;
    border-left: var(--mc-rule);
    overflow-y: auto;
  }

  .mc-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mc-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    margin-top: 2.5rem;
  }

  .mc-nav__link {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0.6rem 0.2rem;
    border-bottom: 1px solid var(--mc-line-soft);
    border-radius: 0;
  }

  .mc-nav__enquire {
    margin-top: 1.25rem;
  }

  .mc-navToggle {
    display: inline-flex;
  }

  .mc-navClose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--mc-paper);
    font-family: var(--mc-font-head);
    padding: 0.4rem 0.1rem 0;
    cursor: pointer;
    min-height: 44px;
  }

  .mc-navClose svg,
  .mc-navClose span.mc-navClose__icon {
    font-size: 1.3rem;
  }

  .mc-footer__top {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
}

@media (max-width: 599px) {
  .mc-footer__top {
    grid-template-columns: 1fr;
  }
}

/* Scroll lock when drawer open */
body.mc-scrollLocked {
  overflow: hidden;
}

.mc-navScrim {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 11, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}

.mc-navScrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}
