/* =========================================================
   Thee Mine Amphitheater — Global Stylesheet
   Fonts: Cinzel (display/serif), Raleway (body/sans)
   Theme: deep warm-black + antique gold
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --dark:        #0c0b09;
  --dark2:       #15130f;
  --dark3:       #1d1a14;
  --border:      rgba(164, 53, 224, 0.20);
  --border-soft: rgba(255, 255, 255, 0.07);
  --gold:        #a435e0;
  --gold-bright: #c06ef2;
  --text:        #ece7da;
  --text-muted:  #9c968a;
  --maxw:        1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .footer-logo {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--text-muted); }

.gold { color: var(--gold); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section  { padding: 6rem 0; }
.center   { text-align: center; }

/* ---------- Shared typographic accents ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem auto;
}
.center .divider { margin-left: auto; margin-right: auto; }
.divider-left { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.btn-gold {
  background: var(--gold);
  color: #0c0b09;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(164, 53, 224, 0.30);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--gold);
  color: #0c0b09;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  animation: announceFlash 1.1s steps(1, end) infinite;
}
@keyframes announceFlash {
  0%, 49%   { background: var(--gold); color: #0c0b09; }
  50%, 100% { background: #0c0b09;     color: var(--gold); }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-bag-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  transition: color 0.25s;
}
.nav-bag-btn:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1), visibility 0s linear 0.4s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1), visibility 0s;
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  background: none; border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 4%, rgba(12,11,9,0.45) 50%, rgba(12,11,9,0.65) 100%);
}
.hero-overlay-sides {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(164,53,224,0.55) 0%, rgba(164,53,224,0.12) 28%, transparent 50%, rgba(164,53,224,0.12) 72%, rgba(164,53,224,0.55) 100%);
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 { margin-bottom: 1.4rem; }
.hero-content p {
  font-size: 1.18rem;
  color: #d6d0c2;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(236,231,218,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 3.2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}
.stats-inline {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stats-inline small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Layout grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.img-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
  pointer-events: none;
}
.img-frame img { transition: transform 0.7s ease; }
.img-frame:hover img { transform: scale(1.04); }

/* ---------- Feature cards ---------- */
.feature-card {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  padding: 2.2rem;
  transition: all 0.35s ease;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: 0.7rem; font-size: 1.15rem; }
.feature-card h4 { font-family: 'Cinzel', serif; }
.feature-card p { font-size: 0.92rem; }

/* ---------- Home gallery teaser ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  padding: 0 2rem;
}
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.5), transparent 60%);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 0.15; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,0.6), rgba(12,11,9,0.82));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 3rem 2rem;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: #d6d0c2;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--border));
}
.timeline-item {
  position: relative;
  padding-left: 2.6rem;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(164,53,224,0.18);
}
.timeline-year {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.timeline-content h3 { margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.95rem; }

/* ---------- Subscribe ---------- */
.subscribe-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.subscribe-section p { max-width: 520px; margin: 0 auto 2rem; }
.subscribe-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.subscribe-form input {
  flex: 1;
  min-width: 240px;
  padding: 0.95rem 1.2rem;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
}
.subscribe-form input:focus { outline: none; border-color: var(--gold); }
.subscribe-form button {
  padding: 0.95rem 2rem;
  background: var(--gold);
  color: #0c0b09;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.subscribe-form button:hover { background: var(--gold-bright); }

/* ---------- Contact form ---------- */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.2rem 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 0.9rem; font-size: 0.95rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo {
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border: none;
}
.footer-tagline {
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 1.4rem;
}
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
  color: var(--text);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding: 1.6rem 2rem 0;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 5, 0.94);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 1.6rem; right: 2rem;
  background: none; border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .stats-inline { flex-wrap: wrap; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Product detail page ---------- */
.back-link {
  display: inline-block;
  margin-bottom: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.back-link:hover { color: var(--gold); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--dark2);
  cursor: zoom-in;
}
.product-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-detail-info { padding-top: 0.5rem; }
.product-detail-info h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0.6rem 0 0.8rem;
}
.product-detail-price {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 600;
}
.product-detail-price .price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-left: 0.6rem;
  font-weight: 400;
}
.product-detail-info > p {
  font-size: 1rem;
  margin: 1.4rem 0 2rem;
}
.size-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.size-chip {
  min-width: 48px;
  padding: 0.65rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
}
.size-chip:hover { border-color: var(--gold); color: var(--gold); }
.size-chip.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c0b09;
  font-weight: 600;
}
.product-meta {
  list-style: none;
  margin-top: 2.4rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.6rem;
}
.product-meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}
.product-meta li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .product-detail { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Product color swatches ---------- */
.color-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.color-label span { color: var(--text); font-weight: 600; }
.color-options {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.color-swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  padding: 0;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.color-swatch:hover { border-color: var(--gold); }
.color-swatch.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,53,224,0.35);
}
