/* Update these variables to change the site's neon color palette. */
:root {
  --neon-green: #39ff6a;
  --neon-pink: #ff3ec9;
  --neon-blue: #3ecbff;
  --neon-yellow: #fff23e;
  --neon-orange: #ff6a3e;
  --panel-border-green: #39ff6a;
  --panel-border-blue: #3ecbff;
  --panel-border-pink: #ff3ec9;
}

* { box-sizing: border-box; }

/* Page-wide reset and base colors. */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

/* Main page width and outer border. */
.page {
  max-width: 1400px;
  margin: 0 auto;
  border: 2px solid var(--panel-border-pink);
}

/* ---------- BODY ---------- */
/* Shared column surface; width behavior is set below per column. */
.col {
  background: rgba(0,0,0,0.70);
  border-radius: 30px;
}

.col-left {
  flex: 1 1 260px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.col-center {
  flex: 2 1 400px;
  display: flex;
  justify-content: center;
}

.col-right {
  flex: 1 1 240px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Upcoming events scrolling panel */
.events-panel {
  border: 2px solid var(--panel-border-green);
  border-radius: 10px;
  background: #000;
  overflow: hidden;
  align-items: center;
}

.events-panel h3 {
  color: var(--neon-orange);
  text-align: center;
  margin: 14px 0 4px 0;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 8px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.events-panel iframe {
  width: 100%;
  height: 180px;
  border: none;
  background: transparent;
}

/* Social icons */
/* Social follow-up area and icon sizing. */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.social-icons a {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

.social-icons .galaxy-icon-frame {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.social-icons .galaxy-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.6);
}

.social-heading {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
}

.icon-facebook {
  background: #1877f2;
}

/* Schedule box (center) */
.schedule-box {
  border: 3px solid var(--panel-border-blue);
  border-radius: 24px;
  background: rgba(0,0,0,0.6);
  padding: 24px 30px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.schedule-box h2 {
  color: var(--neon-orange);
  font-size: 1.7rem;
  margin: 0 0 14px 0;
}

.schedule-box p {
  color: var(--neon-yellow);
  font-size: 1.15rem;
  font-weight: bold;
  margin: 10px 0;
}

/* Styles for content loaded from the day-specific HTML files. */
/* Content injected from the weekday HTML files. */
.schedule-content {
  width: 100%;
}

.schedule-content .title {
  color: var(--neon-green);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0 0 28px 0;
}

.schedule-content .details p {
  color: #f5f3fb;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin: 6px 0;
  line-height: 1.4;
}

.schedule-content .note {
  color: #f5f3fb;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  margin: 0 0 24px 0;
  line-height: 1.5;
  opacity: 0.95;
}

.schedule-content .contact {
  color: #f5f3fb;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  margin: 0;
}

.schedule-content .contact a {
  text-decoration: underline;
  font-weight: 600;
}

.schedule-content .divider {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 18px 0;
}

/* Right column: photo gallery + coupons */
.gallery-panel {
  border: 2px solid var(--panel-border-green);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 5 / 4;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

/* Right-column gallery and coupon panels. */
.coupons-panel {
  border: 2px solid var(--panel-border-blue);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.coupons-panel .coupons-title {
  background: linear-gradient(180deg, #eadbfd, #9185ff);
  color: #000;
  font-weight: bold;
  padding: 6px 0;
}

.coupons-panel .coupons-body {
  padding: 10px 12px 16px 12px;
}

.coupons-panel .coupons-body p {
  margin: 4px 0 10px 0;
  font-size: 0.9rem;
}

.coupons-panel a.coupons-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 250px);
  min-height: 58px;
  padding: 10px 16px;
  border: 2px solid var(--neon-yellow);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--neon-orange), #c93624);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(255, 106, 62, 0.55);
}

.coupons-panel a.coupons-link svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.coupons-panel a.coupons-link:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
}

/* ---------- MOBILE ---------- */
@media (max-width: 800px) {
  .col-left, .col-right, .col-center {
    max-width: 100%;
    width: 100%;
  }
}
