/* ============================================================
   event-center.css - OHTCC Event Center Rental Page Styles
   ============================================================ */

.event-center-hero {
  background: linear-gradient(135deg, #fff8e1 0%, #f7fbff 58%, #edf7f0 100%);
  padding: 34px 0 38px;
}

.event-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.event-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b3200;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.event-hero-copy h1 {
  color: #7a0c10;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.event-lede {
  color: #3f352e;
  font-size: 1.12rem;
  max-width: 640px;
  margin-bottom: 22px;
}

.event-actions,
.event-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.event-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7a0c10;
  font-weight: 800;
  text-decoration: none;
}

.event-phone-link:hover,
.event-phone-link:focus {
  color: #b04600;
  text-decoration: underline;
}

.event-hero-photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(122, 12, 16, 0.18);
  box-shadow: 0 14px 28px rgba(70, 42, 20, 0.16);
  aspect-ratio: 4 / 3;
  background: #f8f3ea;
}

.event-hero-photo img,
.event-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-center-section {
  padding: 34px 0;
}

.event-center-intro {
  background: #fff;
}

.event-intro-panel,
.event-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(176, 70, 0, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: #fffdf8;
}

.event-intro-panel h2,
.event-cta-inner h2 {
  color: #7a0c10;
  margin: 0 0 8px;
}

.event-intro-panel p,
.event-cta-inner p {
  margin: 0;
  color: #3f352e;
}

.event-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-feature-card {
  min-height: 210px;
  border-radius: 8px;
  border: 1px solid rgba(122, 12, 16, 0.14);
  padding: 22px;
  background: linear-gradient(135deg, #fefce8 0%, #fff 70%);
  box-shadow: 0 8px 18px rgba(70, 42, 20, 0.08);
}

.event-feature-card i {
  color: #b04600;
  font-size: 2rem;
  margin-bottom: 14px;
}

.event-feature-card h3 {
  color: #7a0c10;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.event-feature-card p {
  margin: 0;
  color: #3f352e;
}

.event-uses-band {
  background: #f6f8fb;
}

.event-use-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.event-use-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(60, 98, 80, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: #342f2a;
  font-weight: 700;
}

.event-use-list i {
  color: #2f6b4f;
  min-width: 18px;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.event-gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f3ea;
  border: 1px solid rgba(122, 12, 16, 0.14);
}

.event-gallery-grid figure:nth-child(1),
.event-gallery-grid figure:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.event-gallery-grid figure:nth-child(3),
.event-gallery-grid figure:nth-child(4) {
  grid-column: span 2;
}

.event-gallery-grid figure:nth-child(5) {
  grid-column: span 4;
}

.event-food-policy {
  background: #fff;
}

.event-policy-panel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 2px solid rgba(47, 107, 79, 0.24);
  border-radius: 8px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f3fbf5 0%, #fff 72%);
}

.event-policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: #2f6b4f;
  font-size: 1.3rem;
}

.event-policy-panel h2 {
  color: #2f5f47;
  margin: 0 0 8px;
}

.event-policy-panel p {
  color: #342f2a;
  font-weight: 700;
  margin: 0;
}

.event-rental-cta {
  background: linear-gradient(135deg, #fff3df 0%, #ffffff 55%, #eef7f2 100%);
}

@media (max-width: 991px) {
  .event-hero-grid,
  .event-feature-grid,
  .event-use-list {
    grid-template-columns: 1fr;
  }

  .event-intro-panel,
  .event-cta-inner,
  .event-policy-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .event-gallery-grid figure,
  .event-gallery-grid figure:nth-child(1),
  .event-gallery-grid figure:nth-child(2),
  .event-gallery-grid figure:nth-child(3),
  .event-gallery-grid figure:nth-child(4),
  .event-gallery-grid figure:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .event-center-hero,
  .event-center-section {
    padding: 24px 0;
  }

  .event-hero-grid {
    gap: 20px;
  }

  .event-lede {
    font-size: 1rem;
  }

  .event-actions,
  .event-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .event-actions .btn,
  .event-contact-actions .btn,
  .event-phone-link {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .event-intro-panel,
  .event-cta-inner,
  .event-feature-card {
    padding: 18px;
  }

  .event-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}
