/* Basic setup */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;   /* pure white background */
  color: #111111;
}

/* Whole page wrapper */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
  padding-bottom: 420px; /* extra space so side text can continue as you scroll */
}

/* Center column */
.flyer-wrapper {
  max-width: 480px;
  text-align: center;
}

.event-title {
  margin: 0 0 55px;   /* this controls spacing ABOVE the flyer */
}

/* Heading at the top */
.event-title img {
  display: block;
  margin: 0 auto;
  max-width: 80%;   /* adjust if you want it bigger/smaller */
  height: auto;
}

/* Image block */
.flyer-image {
  display: inline-block;
  margin-bottom: 16px;
}

.flyer-image {
  position: relative;
  text-align: center;
}

.flyer-image img {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;        /* increase this number to make it larger */
  max-width: none;    /* allows sizes >100% */
  height: auto;
}


/* Tagline beneath image */
.event-tagline {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 500;
}

/* Social icons row */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* Circular social buttons */
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  color: #111111;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.social-icon:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Diagonal labels on each side */
.side-label {
  position: fixed;
  top: 200px;                  /* distance from top of screen */
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
  color: #111111;
  pointer-events: none;
}

.side-label-left {
  left: 6%;
  transform: translateY(-50%) rotate(-18deg);
}

.side-label-right {
  right: 6%;
  transform: translateY(-50%) rotate(18deg);
}

/* Vertical side text boxes (invisible containers, visible text) */
.side-text {
  position: fixed;
  top: 250px;                           /* just below the label */
  width: 180px;
  height: calc(100vh - 60px);          /* full column height */
  overflow-y: auto;                    /* scrollable */
  font-size: 0.8rem;
  line-height: 1.5;
  text-transform: none; 			   /* ← allows uppercase, lowercase, mixed */
  color: #111111;
  padding-right: 4px;                  /* prevents text clipping */
}

.side-text-left {
  left: 4%;
  text-align: left;
}

.side-text-right {
  right: 4%;
  text-align: left;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .side-label-left {
    left: 2%;
  }

  .side-label-right {
    right: 2%;
  }

  .side-text-left {
    left: 2%;
  }

  .side-text-right {
    right: 2%;
  }
  
}

@media (max-width: 700px) {
  /* On small screens the diagonals and columns can get cramped, so hide them */
  .side-label,
  .side-text {
    display: none;
  }

  .page {
    padding: 32px 16px 40px;
  }
}

.extra-image {
  position: relative;
  text-align: center; /* keeps baseline centering */ 
}

.extra-image img {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%); /* forces perfect centering no matter the width */
  margin: 100px 0 0;          /* keep your existing spacing */
  width: 50%;                /* now you can enlarge it safely */
  max-width: none;            /* unlock sizes >100% */
  height: auto;
  
}

