html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Rubik', sans-serif;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  box-sizing: border-box;
  font-size: 1.5rem; /* 🔠 base font size larger */
}

*, *::before, *::after {
  box-sizing: inherit;
}


.top-section {
  height: 25vh;                 /* 👈 precise height */
  padding: 1rem 2rem;           /* 👈 reduced vertical padding */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sponsor-section {
  height: 75vh;                 /* 👈 precise height */
  overflow-y: auto;
  background: #fff;
  padding: 1rem 2rem;           /* 👈 reduced vertical padding */
  border-top: 2px solid #ddd;
}



/*.top-section {*/
/*  flex: 0 0 30%;*/
/*  padding: 2rem;*/
/*  text-align: center;*/
/*}*/

.top-section img {
  max-height: 200px;
  width: auto;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem; /* 💥 bigger header */
  margin: 1rem 0 0.5rem;
}

p {
  font-size: 1.8rem; /* 🔠 readable paragraph */
  margin: 0.5rem 0;
}

/*.sponsor-section {*/
/*  flex: 0 0 70%;*/
/*  overflow-y: auto;*/
/*  background: #fff;*/
/*  padding: 2rem;*/
/*  border-top: 2px solid #ddd;*/
/*}*/

.wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

/* Bigger square logo boxes */
.logo-container {
  width: 210px;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}



/* FEATURED SPONSOR WALL */

.featured-wall {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
//  gap: 2rem;
//  padding: 2rem 1rem;
//  background: #fffce8;
  border-bottom: 2px solid #ddd;
}

/* Larger featured logos */
.featured-logo-container {
  width: 210px;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
//  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
//  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
//  border: 3px solid gold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
