/* Shotifi - Custom Styles */

:root {
  --sf-cream: #FAF6F1;
  --sf-warm-white: #ffffff;
  --sf-coral: #E8734A;
  --sf-coral-dark: #D4623C;
  --sf-mustard: #E8B44B;
  --sf-sky: #A8D8E8;
  --sf-sky-deep: #6BBCD4;
  --sf-sand: #EDE0CC;
  --sf-dark: #1a1a1a;
  --sf-text: #333333;
  --sf-text-muted: #888888;
  --sf-green: #2ecc71;
  --sf-amber: #f39c12;
}

/* Typography */
html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--sf-text);
  background: var(--sf-cream);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main { flex: 1; }
.site-footer { margin-top: auto; }

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--sf-dark);
}

/* Navbar */
.navbar {
  background: var(--sf-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  padding: 0.7rem 0;
}

.navbar .brand-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sf-coral);
  letter-spacing: -0.5px;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  filter: invert(1);
}

.navbar-toggler:focus { box-shadow: none; }

.nav-utils {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-pill-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.nav-pill-btn.dropdown-toggle::after { font-size: 0.6rem; opacity: 0.6; }
.nav-pill-cart { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.nav-utils .dropdown-menu { font-size: 0.8rem; min-width: 160px; text-align: right; }
.nav-utils .dropdown-item { padding: 0.45rem 0.75rem; justify-content: flex-end; }
.nav-utils .dropdown-item i { width: 1rem; text-align: center; margin-right: 0.3rem; }
.nav-utils .dropdown-divider { margin: 0.25rem 0; }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--sf-coral);
  color: #fff;
  font-size: 0.55rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.cart-pulse { animation: cartPulse 0.4s ease; }
@keyframes cartPulse { 0%{transform:scale(1)} 50%{transform:scale(1.5)} 100%{transform:scale(1)} }

@media (max-width: 991.98px) {
  .nav-utils { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
}

/* Buttons */
.btn-shotifi {
  background: var(--sf-coral);
  color: #fff;
  border: none;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-shotifi:hover {
  background: var(--sf-coral-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-shotifi-outline {
  background: transparent;
  color: var(--sf-coral);
  border: 2px solid var(--sf-coral);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn-shotifi-outline:hover {
  background: var(--sf-coral);
  color: #fff;
}

.btn-shotifi-dark {
  background: var(--sf-dark);
  color: #fff;
  border: none;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-shotifi-dark:hover { background: #333; color: #fff; }

/* Hero */
.hero {
  background: var(--sf-cream);
  color: var(--sf-dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--sf-dark);
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--sf-text-muted);
  font-weight: 400;
  max-width: 460px;
  line-height: 1.6;
}

.hero-stats-inline {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stat-pill {
  background: var(--sf-warm-white);
  border: 1px solid #e0d6c8;
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sf-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-stat-pill:hover {
  border-color: var(--sf-coral);
  box-shadow: 0 2px 12px rgba(232,115,74,0.15);
  color: var(--sf-dark);
}

.hero-stat-pill strong {
  color: var(--sf-coral);
  margin-right: 0.3rem;
}

.hero-collage {
  position: relative;
  height: 420px;
  max-width: 520px;
  margin: 0 auto;
}

.hero-collage-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.hero-collage-img:hover { transform: scale(1.05) !important; z-index: 10; }

.hero-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage-img:nth-child(1) { width: 60%; height: 58%; top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
.hero-collage-img:nth-child(2) { width: 54%; height: 50%; top: 5%; right: 0; transform: rotate(2.5deg); z-index: 2; }
.hero-collage-img:nth-child(3) { width: 52%; height: 48%; bottom: 0; left: 5%; transform: rotate(2deg); z-index: 3; }
.hero-collage-img:nth-child(4) { width: 58%; height: 54%; bottom: 5%; right: 3%; transform: rotate(-2deg); z-index: 4; }

@media (max-width: 991.98px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-collage { display: none; }
  .hero-stats-inline { flex-wrap: wrap; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 1rem; }
}

/* Section Bands */
.section {
  padding: 3.5rem 0;
}

.section-cream { background: var(--sf-cream); }
.section-white { background: var(--sf-warm-white); }
.section-sky { background: var(--sf-sky); }
.section-sand { background: var(--sf-sand); }
.section-coral { background: var(--sf-coral); color: #fff; }
.section-coral h2, .section-coral h3, .section-coral h5 { color: #fff; }
.section-coral .section-subtitle { color: rgba(255,255,255,0.8); }
.section-dark { background: var(--sf-dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h5 { color: #fff; }

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  color: var(--sf-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: #999;
}

.breadcrumb-nav a {
  color: var(--sf-coral);
  text-decoration: none;
}

.breadcrumb-nav .sep {
  margin: 0 0.4rem;
  color: #ccc;
}

/* Venue Card */
.venue-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--sf-warm-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  color: inherit;
}

.venue-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.venue-card:hover .venue-card-img img {
  transform: scale(1.05);
}

.venue-card-type {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--sf-coral);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.venue-card-body {
  padding: 0.85rem;
}

.venue-card-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.venue-card-meta {
  font-size: 0.75rem;
  color: var(--sf-text-muted);
  margin: 0;
}

/* Event Card */
.event-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--sf-warm-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  color: inherit;
}

.event-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.event-card:hover .event-card-img img {
  transform: scale(1.05);
}

.event-card-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}

.event-card-body {
  padding: 0.85rem;
}

.event-card-date {
  display: inline-block;
  background: var(--sf-coral);
  color: #fff;
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.event-card-body h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.event-card-venue {
  font-size: 0.75rem;
  color: var(--sf-text-muted);
  margin: 0;
}
.event-card-credit {
  font-size: 0.7rem;
  color: var(--sf-coral);
  margin: 0.15rem 0 0;
  opacity: 0.8;
}

/* Town Card */
.town-card {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--sf-warm-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.town-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.town-pin { font-size: 1.4rem; color: var(--sf-coral); display: block; margin-bottom: 0.3rem; }
.town-card:hover .town-pin { transform: scale(1.2); }
.town-card h5 {
  color: var(--sf-dark);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.town-card p {
  color: var(--sf-text-muted);
  font-size: 0.8rem;
  margin: 0;
}

.town-card:hover h5 {
  color: var(--sf-coral);
}

/* Venue Header */
.venue-header {
  background: var(--sf-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3rem 0 2rem;
}

.venue-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #fff;
}

.venue-location {
  opacity: 0.7;
  font-size: 0.9rem;
  color: #fff;
}

.venue-info-card {
  background: var(--sf-warm-white);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.venue-info-card a {
  color: var(--sf-coral);
  text-decoration: none;
}

/* Event Header */
.event-header {
  background: var(--sf-dark);
  color: #fff;
  padding: 2rem 0;
}

.event-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.event-meta {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Event Hero Mosaic */
.event-hero-mosaic {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 100%;
}

.mosaic-cell { overflow: hidden; }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; }

.mosaic-cell-0 { grid-column: 1 / 3; grid-row: 1 / 3; }
.mosaic-cell-1 { grid-column: 3; grid-row: 1; }
.mosaic-cell-2 { grid-column: 4; grid-row: 1; }
.mosaic-cell-3 { grid-column: 3; grid-row: 2; }
.mosaic-cell-4 { grid-column: 4; grid-row: 2; }

.mosaic-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 1.5rem;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 70%, #000 100%);
  color: #fff;
}

.mosaic-overlay h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.mosaic-overlay .event-meta {
  font-size: 0.85rem;
  opacity: 0.8;
}

.mosaic-overlay .event-description {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.event-header .event-description {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .event-hero-mosaic { height: 220px; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .mosaic-cell-0 { grid-column: 1; grid-row: 1 / 3; }
  .mosaic-cell-1 { grid-column: 2; grid-row: 1; }
  .mosaic-cell-2 { grid-column: 2; grid-row: 2; }
  .mosaic-cell-3, .mosaic-cell-4 { display: none; }
  .mosaic-overlay h1 { font-size: 1.25rem; }
  .mosaic-overlay { text-align: center; }
}

@media (max-width: 575.98px) {
  .event-hero-mosaic { height: 180px; }
}

/* GLightbox compact overrides */
.goverlay { background: rgba(0,0,0,0.85) !important; }
.gslide-media { max-width: 800px !important; max-height: 80vh !important; margin: 0 auto; }
.gslide-image img { border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background: rgba(255,255,255,0.15) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
}
.glightbox-clean .gdesc-inner { background: transparent !important; padding: 0.5rem 1rem !important; }
.glightbox-clean .gslide-description { background: transparent !important; }
.glightbox-clean .gdesc-inner .gslide-title { color: rgba(255,255,255,0.8) !important; font-size: 0.8rem !important; }
.glightbox-clean .gslide-desc { text-align: center; }
.gl-actions { display: flex; gap: 10px; justify-content: center; margin-top: 0.75rem; }
.gl-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.gl-action-btn-download { background: #fff; color: #1a1a1a; }
.gl-action-btn-download:hover { background: #e8e8e8; color: #1a1a1a; }
.gl-action-btn-cart { background: var(--sf-coral); color: #fff; }
.gl-action-btn-cart:hover { background: var(--sf-coral-dark); color: #fff; }

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 576px) { .photo-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; } }
@media (min-width: 768px) { .photo-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; } }
@media (min-width: 992px) { .photo-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; } }

.photo-grid-item {
  position: relative;
  border-radius: 6px;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
}
.photo-grid-item .photo-thumb-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
}

.photo-grid-item .photo-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.photo-grid-item:hover .photo-thumb-wrap img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-grid-item:hover .photo-thumb-wrap .photo-overlay {
  opacity: 1;
}

.photo-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--sf-dark);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.photo-action-btn:hover {
  background: var(--sf-coral);
  color: #fff;
}

/* Product Options */
.product-option {
  background: #f8f6f3;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}

.product-option:hover { background: #f0ebe4; }

/* How It Works */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sf-coral);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Before / After */
.before-after-card {
  background: var(--sf-warm-white);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.before-after-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.before-after-card .ba-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ba-icon-bad {
  color: #e74c3c;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ba-icon-good {
  color: var(--sf-green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Venue CTA */
.venue-cta {
  background: var(--sf-coral);
  color: #fff;
  padding: 4rem 0;
}

.venue-cta h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.venue-cta p {
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

/* Event Creator CTA */
.event-creator-cta {
  background: linear-gradient(135deg, #2a1f14 0%, #1a120a 100%);
  color: #fff;
  padding: 4rem 0;
}
.event-creator-cta h3 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.event-creator-cta > .container > p {
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}
.event-creator-cta i.fs-3 { color: var(--sf-coral); }

/* How Do I Start dashed box */
.start-box {
  border: 3px dashed var(--sf-dark);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.start-box h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.start-box p {
  font-size: 1rem;
  color: var(--sf-text-muted);
  margin-bottom: 1.5rem;
}

/* Social proof bar */
.proof-bar {
  background: var(--sf-warm-white);
  border-bottom: 1px solid #e8e0d4;
  padding: 1rem 0;
}

.proof-stat {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sf-dark);
}

.proof-stat strong {
  font-size: 1.4rem;
  color: var(--sf-coral);
  display: block;
  font-family: 'Sora', sans-serif;
}

/* Footer */
.site-footer {
  background: var(--sf-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  font-size: 0.85rem;
}

.site-footer h5,
.site-footer h6 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.site-footer .footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sf-coral);
}

.site-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: #fff; }
.site-footer .text-muted { color: rgba(255,255,255,0.4) !important; }
.site-footer hr { border-color: rgba(255,255,255,0.1); margin: 1.5rem 0 0.75rem; }

/* Back to top */
.btn-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sf-coral);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232,115,74,0.3);
  z-index: 1000;
  transition: background 0.2s;
}

.btn-back-to-top:hover { background: var(--sf-coral-dark); }
.btn-back-to-top.show { display: flex; }

/* 404 */
.page-404-content {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.page-404-content h1 {
  font-size: 6rem;
  color: var(--sf-coral);
  font-weight: 800;
}

/* Admin Bar (front-end) */
.admin-bar {
  background: #2a2017;
  padding: 0.3rem 0;
  font-size: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 1040;
}
body.has-admin-bar .navbar.sticky-top { top: 0; }

.admin-bar a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.admin-bar a:hover { color: var(--sf-coral); }
.admin-bar-dev { background: #e74c3c; }
.admin-bar-dev a { color: #fff; }
.admin-bar-dev a:hover { color: #ffd; }
.admin-bar-env { display: inline-block; background: rgba(0,0,0,0.3); color: #fff; font-weight: 700; font-size: 0.65rem; padding: 0.1rem 0.4rem; border-radius: 3px; margin-left: 0.5rem; letter-spacing: 0.05em; }

/* Admin Top Bar */
.admin-topbar {
  background: #2a2017;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
}

.admin-topbar a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.admin-topbar a:hover { color: var(--sf-coral); }

/* Admin Sidebar */
.admin-sidebar {
  background: #1f1810;
  color: #fff;
  width: 200px;
  flex-shrink: 0;
  min-height: calc(100vh - 28px);
  padding: 1rem;
  position: sticky;
  top: 28px;
  height: calc(100vh - 28px);
  overflow-y: auto;
}

.admin-sidebar a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: block;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  transition: background 0.15s, color 0.15s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(232,115,74,0.12);
  color: var(--sf-coral);
}

.admin-sidebar-overlay { display: none; }

@media (max-width: 991.98px) {
  .admin-sidebar {
    position: fixed;
    top: 34px;
    left: -220px;
    width: 200px;
    height: calc(100vh - 34px);
    z-index: 1050;
    transition: left 0.25s;
    overflow-y: auto;
  }
  .admin-sidebar.open { left: 0; }
  .admin-sidebar-overlay {
    display: none;
    position: fixed;
    top: 34px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
  }
  .admin-sidebar-overlay.open { display: block; }
}

.admin-content { padding: 2rem; background: #f7f3ee; min-height: 100vh; }

.admin-content .table { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.admin-content .table thead th { background: #faf6f1; border-bottom: 2px solid #ede0cc; font-weight: 600; color: #555; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.04em; padding: 0.6rem 0.75rem; white-space: nowrap; }
.admin-content .table tbody td { padding: 0.55rem 0.75rem; vertical-align: middle; border-color: #f0ebe4; }
.admin-content .table tbody tr:hover { background: rgba(232,115,74,0.04); }
.admin-content .table tbody tr:last-child td { border-bottom: none; }

/* Stat Cards */
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-left: 3px solid #ddd;
}

.stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.15rem;
}

.stat-card-green { border-left-color: var(--sf-green); }
.stat-card-red { border-left-color: var(--sf-coral); }
.stat-card-amber { border-left-color: var(--sf-amber); }
.stat-card-blue { border-left-color: #5B8FC7; }
.stat-card-purple { border-left-color: #8B6BAE; }
.stat-card-teal { border-left-color: #4CA8A0; }

/* Collapse chevron */
.collapse-toggle-chevron { transition: transform 0.25s; }
.collapsed .collapse-toggle-chevron { transform: rotate(-90deg); }

/* Lazy load */
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s; }
img[loading="lazy"].loaded, img.loaded { opacity: 1; }

/* Photo admin card */
.photo-admin-card { border-radius: 4px; overflow: hidden; }
.sortable-ghost { opacity: 0.3; }
.sortable-ghost .photo-admin-card { outline: 2px dashed var(--sf-coral); outline-offset: -2px; }

/* Register page warm */
.register-page {
  min-height: 100vh;
  background: var(--sf-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.register-card {
  background: var(--sf-warm-white);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 860px;
  width: 100%;
  overflow: hidden;
}

.register-form-side {
  padding: 2.5rem;
}

.register-benefits-side {
  background: var(--sf-coral);
  color: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-benefits-side h4 { color: #fff; margin-bottom: 1.5rem; }

.register-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.register-benefit i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse { padding: 1rem 0; }
  .section { padding: 2.5rem 0; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.4rem; }
  .venue-name { font-size: 1.5rem; }
  .event-header h1 { font-size: 1.25rem; color: #fff; }
  .photo-grid { gap: 3px; }
  .hero-stats-inline { gap: 0.5rem; }
  .hero-stat-pill { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
}

/* Mobile: center headers */
@media (max-width: 767.98px) {
  .event-header { text-align: center; }
  .venue-header { text-align: center; }
  .venue-header .d-flex { flex-direction: column; align-items: center !important; }
  .hero { text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-stats-inline { justify-content: center; }
}

/* My Events */
.my-events-topbar { background: #1a1a1a; padding: 0.65rem 0; }
.my-events-brand { color: #E8734A; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.my-events-brand:hover { color: #E8734A; }
.my-event-row { transition: box-shadow 0.2s; }
.my-event-row:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.my-event-cover { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.my-event-cover img { width: 100%; height: 100%; object-fit: cover; }
.my-event-actions { flex-shrink: 0; }
@media (max-width: 767.98px) {
  .my-event-row { flex-wrap: wrap; }
  .my-event-actions { width: 100%; justify-content: flex-end; margin-top: 0.5rem; }
}

/* Reactions */
.reaction-bar { display: flex; gap: 2px; padding: 4px 0; justify-content: flex-end; width: 100%; }
.reaction-btn { background: none; border: 1px solid transparent; border-radius: 16px; padding: 2px 8px; font-size: 0.75rem; cursor: pointer; display: flex; align-items: center; gap: 3px; transition: all 0.2s; color: #888; }
.reaction-btn:hover { background: rgba(232,115,74,0.08); border-color: rgba(232,115,74,0.2); }
.reaction-btn.active { background: rgba(232,115,74,0.12); border-color: #E8734A; color: #E8734A; }
.reaction-count { font-size: 0.7rem; min-width: 8px; }
.reaction-pulse { animation: reactionPulse 0.3s ease; }
@keyframes reactionPulse { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }

/* Leaderboard */
.leaderboard-strip { display: flex; gap: 12px; overflow-x: auto; padding: 8px 0; -webkit-overflow-scrolling: touch; }
.leaderboard-item { flex-shrink: 0; width: 140px; position: relative; }
.leaderboard-item img { width: 140px; height: 140px; object-fit: cover; border-radius: 10px; }
.leaderboard-badge { position: absolute; bottom: 6px; right: 6px; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 12px; }
.leaderboard-rank { position: absolute; top: 6px; left: 6px; font-size: 1.2rem; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5)); }
