/* =====================================================
   CONFERENCES & CONVENTIONS PAGE
   File: conferences.css
   ===================================================== */

.conferences-page {
  max-width: 1180px;
  margin: 0 auto;
}

/* HERO */

.conference-hero {
 margin: 0 0 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 5px solid var(--gold);
  background: var(--navy);
  height: 340px;
}

.conference-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* FEATURE CARDS */

.conference-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0 34px;
}

.conference-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 16px 18px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.conference-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.conference-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
}

.conference-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 1.14rem;
  line-height: 1.15;
}

.conference-card h4 {
  margin: 4px 0 10px;
  color: #9b1c1c;
  font-size: 1.15rem;
}

.conference-card p {
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 18px;
}

.conference-card .button {
  margin-top: auto;
}

.conference-icon {
  width: 86px;
  height: 86px;
  margin: 12px auto 18px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2.7rem;
  border: 5px solid var(--gold);
  box-shadow: 0 5px 14px rgba(0,0,0,.16);
}

.official-visitor-photo {
  object-position: center top;
  border: 4px solid #9b1c1c !important;
}

/* REDNECK BANQUET BANNER */

/* REDNECK BANQUET BANNER */

.redneck-banner {
  max-width: 1040px;
  margin: 34px auto 30px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
border: 4px solid var(--gold);
background: var(--gold);
  height: 320px;
}

.redneck-banner img {
  width: calc(100% + 34px);
  height: calc(100% + 44px);
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: -17px -17px -27px -17px;
}
/* LOOKING AHEAD */

.spring-conference {
  text-align: center;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 12px;
  padding: 28px;
  margin: 32px auto;
  max-width: 900px;
  box-shadow: var(--shadow);
}

.spring-conference h2,
.spring-conference h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  margin-top: 0;
}

.spring-conference h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.spring-conference h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.spring-conference p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.5;
}

.spring-location {
  font-size: 1.35rem !important;
  color: var(--navy) !important;
  margin-top: 14px;
}

/* TABLET */

@media (max-width: 1050px) {
  .conference-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 720px) {
  .conference-hero {
    margin: 18px 0 24px;
    border-radius: 10px;
  }

  .conference-card-grid {
    grid-template-columns: 1fr;
  }

  .conference-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }

  .conference-card img {
    height: auto;
    max-height: 240px;
  }

  .conference-icon {
    width: 82px;
    height: 82px;
    font-size: 2.5rem;
    margin: 12px auto 22px;
  }

  .spring-conference {
    padding: 24px 20px;
    margin: 28px 0;
  }

  .spring-conference h2 {
    font-size: 1.65rem;
  }

  .spring-conference h3 {
    font-size: 1.25rem;
  }
}