/* ==========================================================================
   Phoenix Arena - Home Page Specific CSS (home.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 88vh;
  background-color: #0f172a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 20, 0.92) 0%, rgba(5, 11, 20, 0.72) 50%, rgba(5, 11, 20, 0.35) 100%),
    linear-gradient(0deg, rgba(5, 11, 20, 0.85) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
  text-align: left;
  /* Explicitly left-aligned */
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight-text {
  color: var(--color-gold);
  display: block;
  margin-top: 0.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   2. HIGHLIGHTS RIBBON
   -------------------------------------------------------------------------- */
.highlights-ribbon {
  background: linear-gradient(90deg, #2A0608 0%, #4A150E 50%, #2A0608 100%);
  border-top: 1px solid rgba(212, 136, 23, 0.3);
  border-bottom: 1px solid rgba(212, 136, 23, 0.3);
  color: #fef3c7;
  padding: 2.25rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.highlight-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212, 136, 23, 0.4);
  background-color: rgba(212, 136, 23, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 0.75rem auto;
  transition: all 0.25s ease;
}

.highlight-item:hover .highlight-icon-circle {
  background-color: var(--color-amber);
  color: #ffffff;
  transform: scale(1.08);
}

.highlight-item h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.highlight-item p {
  color: rgba(254, 243, 199, 0.75);
  font-size: 14px;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3. UPCOMING EVENTS CARDS
   -------------------------------------------------------------------------- */
.event-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(154, 42, 24, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.event-card-img-wrapper {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.event-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-img-wrapper img {
  transform: scale(1.06);
}

.event-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--color-terracotta);
  color: #ffffff;
  border-radius: 10px;
  padding: 6px 12px;
  text-align: center;
  min-width: 56px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.event-date-badge .month {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fde68a;
  line-height: 1;
}

.event-date-badge .day {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 2px;
}

.event-card-body {
  padding: 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-category-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: 0.35rem;
}

.event-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.event-meta-info {
  font-size: 14px;
  color: #475569;
  margin-bottom: 1.25rem;
}

.event-meta-info p {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta-info i {
  color: var(--color-terracotta);
}

/* --------------------------------------------------------------------------
   4. OUR VENUES CARDS
   -------------------------------------------------------------------------- */
.venue-card-large {
  background-color: var(--color-card-cream);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(154, 42, 24, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.venue-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.venue-img-header {
  position: relative;
  height: 280px;

}

.venue-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card-large:hover .venue-img-header img {
  transform: scale(1.05);
}

.venue-circle-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-dark-maroon);
  border: 2px solid #ffffff;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.venue-card-body {
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.venue-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto;
  max-width: 320px;
  text-align: left;
  font-size: 14px;
  color: #334155;
}

.venue-feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.venue-feature-list i {
  color: var(--color-terracotta);
}

/* --------------------------------------------------------------------------
   5. WHY CHOOSE PHOENIX ARENA
   -------------------------------------------------------------------------- */
.why-choose-section {
  position: relative;
  background: url("/images/home/whyChooseBachground.jpg") no-repeat;
  background-size: cover;
  background-position: left;
  padding: 4.5rem 0;
  overflow: hidden;
  color: #ffffff;
}

/* Ornate Frame & Corners */
.why-choose-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212, 136, 23, 0.4);
  pointer-events: none;
  z-index: 10;
  border-radius: 2px;
}

.corner-ornament {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(212, 136, 23, 0.7);
  pointer-events: none;
  z-index: 11;
}

.corner-ornament.top-left {
  top: 16px;
  left: 16px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-ornament.top-right {
  top: 16px;
  right: 16px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-ornament.bottom-left {
  bottom: 16px;
  left: 16px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.corner-ornament.bottom-right {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.why-choose-container {
  position: relative;
  z-index: 20;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.why-choose-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(212, 136, 23, 0.15);
  border: 1px solid rgba(212, 136, 23, 0.4);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 1.25rem auto;
  transition: all 0.25s ease;
}

.why-choose-item:hover .why-choose-item-icon {
  background-color: var(--color-amber);
  color: #ffffff;
  transform: scale(1.08);
}

.why-choose-item h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-choose-item p {
  color: rgba(254, 243, 199, 0.75);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. STATS COUNTER SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: #F5EFEB;
  border-top: 1px solid rgba(154, 42, 24, 0.15);
  border-bottom: 1px solid rgba(154, 42, 24, 0.15);
  padding: 3.5rem 0;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
}

/* --------------------------------------------------------------------------
   7. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(154, 42, 24, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-amber);
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-author-role {
  font-size: 14px;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   8. CTA BANNER SECTION
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  background-color: #050b14;
  padding: 4.5rem 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(61, 12, 16, 0.95) 0%, rgba(42, 6, 8, 0.9) 60%, rgba(5, 11, 20, 0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 10;
}