/* Reset and base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Full-width banner/logo */
.header-banner { width: 100%; background: #fff; border-bottom: 1px solid #eee; }
.header-banner-bg{
  height: 150px;                   /* banner height, tweak if needed */
  background: url("tynetipples-logo.jpg") center / cover no-repeat;
}
@media (max-width:640px){ .header-banner-bg{ height: 110px; } }

/* Navigation */
nav{
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 12px 10px;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
}
nav a{
  text-decoration: none;
  color: #5a2a83;
  font-weight: 700;
}
nav a:hover{ color: #2b2140; }

/* Layout container */
.container{ width: 92%; max-width: 1100px; margin: 22px auto; }

/* Headings */
h1, h2{ text-align: center; margin: 12px 0 18px; }
h1{ font-size: 2.2rem; }
h2{ font-size: 1.7rem; }

/* ----- HOME ----- */

/* Reels grid: consistent thumbs */
.reels{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: start;
  margin-top: 12px;
}
.reels a{ text-decoration: none; color: inherit; display:block; }
.reels img{
  width: 100%;
  height: 220px;         /* uniform height */
  object-fit: cover;     /* crop neatly */
  border-radius: 12px;
  display: block;
}
.reels h3{
  margin-top: 10px;
  text-align: center;
  font-size: 1.05rem;
}

/* YouTube preview block */
.yt{ max-width: 560px; margin: 18px auto 8px; }
.yt img{ width: 100%; height: auto; border-radius: 10px; display:block; }
.yt p{ text-align: center; margin-top: 8px; }

/* Social links row */
.social{
  text-align: center;
  margin: 18px 0 6px;
}
.social .lead{ font-weight: 700; margin-bottom: 10px; }
.social a{
  display: inline-block;
  margin: 0 10px;
  color: #5a2a83;
  font-weight: 700;
  text-decoration: none;
}
.social a:hover{ text-decoration: underline; }

/* ----- EVENTS ----- */

.events-hero{ display:flex; justify-content:center; margin-bottom: 18px; }
.events-hero img{
  width: 100%;
  max-width: 1000px;     /* keeps poster large but sensible */
  height: auto;
  border-radius: 10px;
}

.event-block{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.event-block:last-of-type{ border-bottom: none; }
.event-block img{
  width: 100%; max-width: 320px; height: auto; border-radius: 10px;
}
.event-info h3{ margin: 0 0 8px; text-align:left; }
.event-info p{ margin: 6px 0; }
.event-info ul{ margin: 10px 0 8px 18px; }
.event-info a.btn{
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  background: #5a2a83;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}
.event-info a.btn:hover{ background: #422167; }

@media (max-width: 780px){
  .event-block{ grid-template-columns: 1fr; }
  .event-info h3, .event-info p{ text-align: center; }
  .event-info ul{ text-align:left; max-width: 520px; margin: 10px auto; }
  .event-info .btn{ display:block; width:max-content; margin: 8px auto 0; }
}

/* ----- ABOUT ----- */

.about-wrap{
  display:flex;
  gap: 22px;
  align-items: flex-start;
}
.about-wrap img{
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}
.about-text{ flex: 1; }
.about-text p{ margin-bottom: 12px; }

@media (max-width: 820px){
  .about-wrap{ flex-direction: column; align-items:center; }
  .about-text{ text-align: left; width: 100%; }
}

/* Footer */
footer{ text-align:center; padding: 26px 0 30px; color: #666; font-size:.95rem; }
