/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f0f0f;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

/* Hero Banner */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;          /* Keeps aspect ratio, fills width */
  max-height: 400px;          /* Adjust this to control banner height on desktop */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}

.hero-overlay p {
  font-size: 1.6rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* Content container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

h1 {
  color: #ff3366;
  text-align: center;
  margin: 0.8em 0 0.4em;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(255, 51, 102, 0.3);
}

h2 {
  color: #ffaa33;
  text-align: center;
  margin: 2em 0 0.8em;
  font-size: 2.2rem;
}

h3 {
  color: #88ccff;
  text-align: center;
  margin: 2.8em 0 1em;
  font-size: 1.6rem;
}
h4 {
  color: #88ccff;
  text-align: left;
  margin: 2em 0 1em;
  font-size: 1.5rem;
  font-family: 'Condiment', cursive;
    font-weight: 400; /* Condiment only comes in regular 400 */
    font-style: normal;
}

p {
  margin: 1.1em 0;
  text-align: center;
  font-size: 1.15rem;
}

.intro {
  font-size: 1.5rem;
  margin-bottom: 1.8em;
}

.highlight-date {
  font-size: 1.6rem;
  font-weight: bold;
  color: #33ff99;
  background: rgba(51, 255, 153, 0.15);
  padding: 6px 16px;
  border-radius: 10px;
}

a {
  color: #66aaff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #99ccff;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 3em auto;
  width: 60%;
}

.contact {
  font-size: 1.3rem;
  margin: 2em 0;
}

.donate-btn-wrap {
  margin: 2.5em 0 3.5em;
  text-align: center;
}

.donate-btn {
  display: inline-block;
  background: #ff3366;
  color: white;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
  transition: all 0.25s;
}

.donate-btn:hover {
  background: #ff6699;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 51, 102, 0.5);
}

.archive-links {
  font-size: 1.1rem;
  margin-top: 2em;
  color: #aaa;
}

.archive-links a {
  color: #88ccff;
  margin: 0 8px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-image {
    max-height: 300px;          /* Shorter banner on phones */
  }
  h1 { font-size: 2.4rem; }
  .donate-btn { padding: 14px 32px; font-size: 1.2rem; }
 
}

.venue-list {
  list-style: none;
  padding: 0;
  margin: 1.5em auto;
  max-width: 400px;
  text-align: center;
}

.venue-list li {
  font-size: 1.3rem;
  margin: 0.6em 0;
  color: #ffaa33;  /* or whatever accent color you like */
  font-weight: bold;
}

.venue-list li:before {
  content: "🎤 ";  /* optional fun emoji prefix */
}

.map-wrap {
  max-width: 900px;
  margin: 2em auto;
  border: 2px solid #333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}


#proudlysponsored{
    
    font-family: 'Condiment', cursive;
    font-weight: 400; /* Condiment only comes in regular 400 */
    font-style: normal;
    font-size: 1.3rem;
    text-align:left;
    margin:10px;
}
.sponsorslogos
{
      list-style: none;
    max-width:100%;
   border: 0px solid #333;

}

.sponsorslogos li {
    
    margin:0.5em;
    display:inline;

}

.sponsorslogos li img {
    
    height:80px;
    border-radius:10px;
}

#aboutus p{
    
    
    font-size:1em;
    text-align:left;
}

