/* =========================================================
   seats/style.css
   Built on the same base as about.css — all topbar styles
   are identical. Seat-specific rules added at bottom.
   ========================================================= */

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

/* ── Page ── */
body, html {
  font-family: system-ui, sans-serif;
  height: 100%;
  overflow: hidden;
}

.about-page {
  background: #1f1f1f;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
}

/* ── Page scroll container — keeps scrollbar below topbar ── */
.page-scroll {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/* =========================================================
   TOPBAR — identical to about.css
   ========================================================= */

#topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #000;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 12px;
}

#specSwitch {
  display: flex;
  gap: 8px;
  flex: 1;
  align-items: center;
}

#pageLabel {
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#rightBlock {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#logoDropdownWrap {
  position: relative;
}

#logoDropdownBtn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease;
  font-family: system-ui, sans-serif;
}

#logoDropdownBtn:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 999;
}

.dropdown-menu.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.1s ease, border-color 0.1s ease;
  font-family: system-ui, sans-serif;
}

.dropdown-item:hover {
  background: #f5f5f5;
  border-left-color: #1677ff;
}

.dropdown-item.active {
  border-left-color: #f10c45;
  color: #f10c45;
}

#socials {
  display: flex;
  gap: 12px;
}

#socials a {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  opacity: 0.85;
  shape-rendering: geometricPrecision;
}

#socials a:hover svg {
  opacity: 0.6;
}

/* =========================================================
   SHARED ABOUT-PAGE CLASSES
   (copied from about.css so seats uses same look)
   ========================================================= */

.seats-main {
  padding-top: 48px;
}

.ab-hero,
.ab-section,
.ab-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
  padding-right: 60px;
}

.ab-section {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ab-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fea700;
  margin-bottom: 24px;
}

.ab-h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #ffffff;
  margin: 0 0 28px;
}

.ab-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 14px;
}

.ab-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 0 48px;
  font-weight: 500;
}

.ab-p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0 0 20px;
  font-weight: 400;
}

.ab-colorbar {
  display: flex;
  gap: 6px;
  width: 120px;
}

.ab-colorbar div {
  height: 4px;
  flex: 1;
  border-radius: 2px;
}

/* Contact / CTA footer */
.ab-contact {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ab-contact-inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.ab-contact-brand {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 16px;
}

.ab-phone {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #fea700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.15s ease;
}

.ab-phone:hover { opacity: 0.7; }

.ab-color-blocks {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ab-color-blocks div {
  width: 44px;
  height: 110px;
  border-radius: 8px;
}

/* =========================================================
   SEAT-SPECIFIC STYLES
   ========================================================= */

/* Option number label above each section */
.seat-option-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
}

/* Two-column layout: text | images */
.seat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Flip: images left, text right (Option 02) */
.seat-layout--flip .seat-info { order: 2; }
.seat-layout--flip .image-grid { order: 1; }

/* Seat info column */
.seat-info { display: flex; flex-direction: column; gap: 0; }

/* Coloured headings */
.seat-heading--red    { color: #f10c45; }
.seat-heading--yellow { color: #fea700; }
.seat-heading--blue   { color: #1677ff; }

/* Price line */
.seat-price {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.seat-price strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
}

/* Tags */
.seat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}

.tag-red {
  background: rgba(241,12,69,0.1);
  border-color: rgba(241,12,69,0.3);
  color: #f10c45;
}

.tag-yellow {
  background: rgba(254,167,0,0.1);
  border-color: rgba(254,167,0,0.3);
  color: #fea700;
}

.tag-blue {
  background: rgba(22,119,255,0.1);
  border-color: rgba(22,119,255,0.3);
  color: #1677ff;
}

/* Color swatches (simulator seat) */
.color-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.swatch-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.swatch-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-left: 4px;
}

/* Image grid: first slot spans full width, next two split */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.img-slot:first-child {
  grid-column: 1 / -1;
}

.img-slot {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}

.img-slot:hover { border-color: rgba(255,255,255,0.25); }

.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.img-slot:hover img { transform: scale(1.03); }

/* Placeholder shown when image fails */
.img-slot.empty::after {
  content: "Image coming soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

.img-slot.empty img { display: none; }

/* CTA button */
.seats-cta-btn {
  display: inline-block;
  background: #1677ff;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  transition: opacity 0.15s;
}

.seats-cta-btn:hover { opacity: 0.85; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 760px) {
  #topbar { padding: 0 12px; gap: 8px; }
  #socials a { width: 20px; height: 20px; }

  .ab-hero,
  .ab-section,
  .ab-contact {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .seat-layout,
  .seat-layout--flip {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Always: info first, images second on mobile */
  .seat-layout--flip .seat-info  { order: 0; }
  .seat-layout--flip .image-grid { order: 0; }

  .ab-contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ab-color-blocks { display: none; }
}

@media (orientation: portrait) {
  #topbar { padding: 0 12px; gap: 8px; }
  #specSwitch { flex: 1; }
}