/* Landing Page Custom Styles */

/* #landing-content {
    padding: 60px 20px;
} */

.event-details h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.event-details h2 {
    font-size: 1.8em;
    margin: 5px 0;
}

.event-details h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
}

.event-details {
    text-align: center;
    /* Centers text and inline elements */
    display: flex;
    flex-direction: column;
    /* Stacks heading, text, button */
    align-items: center;
    /* Centers the button horizontally */
    justify-content: center;
    /* Centers vertically if needed */
    margin-top: 40px;
}

.sponsors-heading {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: bold;
}


.registration-note {
    font-size: 1.1em;
    margin: 15px 0;
    color: #fff;
}

.btn-disabled {
  display: inline-block;
  padding: 12px 24px;
  background: #ccc;
  color: #666;
  border-radius: 5px;
  text-decoration: none;
  cursor: not-allowed;
  opacity: 0.6;              /* faded look */
  /* pointer-events: none;      no click possible */
}


.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    margin-top: 30px;
    align-items: center;
    justify-items: center;
}

.sponsors-grid img {
    max-width: 100px;
    max-height: 90px;
    object-fit: contain;
}

#footer {
  /* background: #f5f5f5;   optional, gives footer a light background */
  padding: 20px 0;
}

#footer .container {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
}

#footer p {
  text-align: center;
  margin: 0;
  font-size: 14px;
  /* color: #555;            optional: softer text color */
}

/* Responsive Sponsor Grid */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 15px;
  margin-top: 30px;
  align-items: center;
  justify-items: center;
}

.sponsors-grid img {
  max-width: 100px;
  max-height: 90px;
  object-fit: contain;
}

/* Tablet screens */
@media (max-width: 1024px) {
  .sponsors-grid {
    grid-template-columns: repeat(8, 1fr); /* 5 logos per row */
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr); /* 3 logos per row */
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr); /* 2 logos per row */
    gap: 10px;
  }

  .sponsors-grid img {
    max-width: 80px;
    max-height: 70px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr); /* 1 logo per row */
  }
}
