/* SecTor 2025 - Canadian / Toronto Theme */
/* Color Palette: Deep crimson (#B22234), white, maple accents, dark slate */

.sectorPage {
  background: #0f172a;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Banner */
.heroBanner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.bannerImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bannerOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.bannerContent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(178, 34, 52, 0.2);
  border: 1px solid rgba(178, 34, 52, 0.4);
  color: #fca5a5;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badgeIcon {
  font-size: 1rem;
}

.heroTitle {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #f1f5f9;
  margin: 0;
}

.highlight {
  background: linear-gradient(135deg, #b22234 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Content Section */
.heroContent {
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(178, 34, 52, 0.1);
}

.heroSubtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.eventDetails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
  color: #b22234;
}

.heroCtas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.primaryCta {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #b22234 0%, #991b1b 100%);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primaryCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(178, 34, 52, 0.4);
  color: white;
}

.secondaryCta {
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fca5a5;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(178, 34, 52, 0.4);
  transition: all 0.3s ease;
}

.secondaryCta:hover {
  background: rgba(178, 34, 52, 0.1);
  color: white;
}

/* Sections */
.arsenalSection,
.whySection,
.conversationsSection,
.statsSection,
.themesSection,
.ctaSection {
  padding: 4rem 0;
}

.arsenalSection {
  background: rgba(178, 34, 52, 0.02);
}

.sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.sectionTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Arsenal Card */
.arsenalCard {
  background: linear-gradient(135deg, rgba(178, 34, 52, 0.1) 0%, rgba(178, 34, 52, 0.05) 100%);
  border: 1px solid rgba(178, 34, 52, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.arsenalCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #ef4444 50%, #b22234 100%);
}

.arsenalBadge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #b22234 0%, #dc2626 100%);
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.arsenalTitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.arsenalDescription {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.arsenalFeatures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.arsenalFeature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.featureIcon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.arsenalFeature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 0.25rem 0;
}

.arsenalFeature p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* Why Grid */
.whyGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.whyCard {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(178, 34, 52, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.whyCard:hover {
  border-color: rgba(178, 34, 52, 0.3);
  transform: translateY(-2px);
}

.whyEmoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.whyCard h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.whyCard p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Conversations Grid */
.conversationsSection {
  background: rgba(178, 34, 52, 0.02);
}

.conversationsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.conversationCard {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(178, 34, 52, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.conversationCard:hover {
  border-color: rgba(178, 34, 52, 0.3);
  transform: translateY(-2px);
}

.conversationIcon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.conversationCard h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.conversationCard p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Stats Section */
.statsSection {
  background: linear-gradient(135deg, rgba(178, 34, 52, 0.1) 0%, rgba(178, 34, 52, 0.05) 100%);
  border-top: 1px solid rgba(178, 34, 52, 0.15);
  border-bottom: 1px solid rgba(178, 34, 52, 0.15);
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 1.5rem;
}

.statNumber {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.statLabel {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Themes Grid */
.themesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.themeQuote {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(178, 34, 52, 0.15);
  border-left: 4px solid #b22234;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin: 0;
}

.themeQuote p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.themeQuote cite {
  font-size: 0.875rem;
  color: #b22234;
  font-style: normal;
  font-weight: 600;
}

/* CTA Section */
.ctaContent {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(178, 34, 52, 0.08) 0%, rgba(30, 41, 59, 0.1) 100%);
  border: 1px solid rgba(178, 34, 52, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
}

.ctaMaple {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ctaTitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.ctaText {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer Navigation */
.footerNav {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(178, 34, 52, 0.1);
}

.backLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.backLink:hover {
  color: #b22234;
}

.backIcon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .heroBanner {
    height: 300px;
  }

  .bannerContent {
    padding: 2rem 1.5rem;
  }

  .heroTitle {
    font-size: 2rem;
  }

  .heroSubtitle {
    font-size: 1.1rem;
  }

  .eventDetails {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .heroCtas {
    flex-direction: column;
    align-items: center;
  }

  .primaryCta,
  .secondaryCta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .arsenalCard {
    padding: 1.5rem;
  }

  .arsenalTitle {
    font-size: 1.25rem;
  }

  .ctaContent {
    padding: 2rem 1.5rem;
  }

  .ctaButtons {
    flex-direction: column;
    align-items: center;
  }

  .arsenalSection,
  .whySection,
  .conversationsSection,
  .statsSection,
  .themesSection,
  .ctaSection {
    padding: 3rem 0;
  }
}
