:root {
  --light-bg: #d0e8f4;
  --blue: #173f73;
  --blue-dark: #12345b;
  --blue-mid: #1d4e89;
  --accent: #d72828;
  --text: #123a63;
  --white: #ffffff;
  --border: #315d86;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #eef4f8;
  color: var(--text);
  padding: 24px;
}

.flyer {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  background: var(--light-bg);
  border: 2px solid var(--border);
  overflow: hidden;
}

/* HERO */
.hero {
  padding: 28px 28px 48px;
}

.hero-graphics {
  display: flex;
  justify-content: center; 
  margin-bottom: 22px;
}

.logo-box {
	display:flex;
	justify-content:center;
	padding: 20px;
}

.logo-box img{
	max-width: 750px;
}

.hero-text {
  text-align: center;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-text .red {
  color: var(--accent);
}

.hero-text .blue {
  color: var(--blue-dark);
}

.subtitle {
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--blue-dark);
  max-width: 920px;
  margin: 0 auto;
}

.hero-cta {
  margin-top: 24px;
  text-align: center;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--blue-dark);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.download-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* BANNER */
.event-banner {
  color: var(--white);
  text-align: center;
  padding: 50px 20px;
}

.event-banner img {
  width: 200px;
}

.small-logo{
  width: 100px !Important;
  justify-self: center;
}

.medium-logo{
  width: 125px !Important;
  justify-self: center;
}

.large-logo{
  width: 225px !Important;
  justify-self: center;
}

.grid{
  display: grid;
   grid-template-columns: auto auto auto auto;
  justify-content: space-around;
  align-items: center;
  gap: 50px 25px ;
}

/* UPFOOTER */
.upfooter {
  background: var(--white);
  padding: 8px 26px;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.upfooter img{
  height: 25px;
}

.upfooter .sponsor img{
  width: 150px;
  height: auto;
}

/* FOOTER */
.footer {
  background: var(--light-bg);
  padding: 16px 20px;
  text-align: center;
  border-top: 2px solid var(--border);
}

.footer p {
  font-size: 0.95rem;
  color: var(--blue-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-links {
  margin-bottom: 0;
}

.footer a {
  color: var(--blue-dark);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* TABLET */
@media (max-width: 1025px) {
  .logo-box img{
	  max-width: 90%;
  }	
	
  .hero-text h1 {
    font-size: 2.3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .event-banner h2 {
    font-size: 1.6rem;
  }

  .center-col {
    order: -1;
    margin-bottom: 8px;
  }
  
  .grid{
   grid-template-columns: auto auto;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  body {
    padding: 10px;
  }
  
  .grid{
   grid-template-columns: auto;
  }
  
  .logo-box{
    padding: 0px;
  }
  
  .logo-box img{
	max-width: 100%;
  }

  .hero {
    padding: 18px 14px 16px;
  }

  .hero-graphics {
    min-height: 220px;
    margin-bottom: 18px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .hero-cta {
    margin-top: 18px;
  }

  .download-btn {
    width: 100%;
    max-width: 320px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .event-banner {
    padding: 14px 10px;
  }

  .event-banner h2 {
    font-size: 1.1rem;
  }

  .footer {
    padding: 14px 10px;
  }

  .footer p {
    font-size: 0.82rem;
  }
}