.elementor-17425 .elementor-element.elementor-element-65df0683{--display:flex;}.elementor-17425 .elementor-element.elementor-element-3a8e49d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-bc3caec *//* Full Width - Reduced Height - High Energy */
.event-directory {
  width: 100%;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8e0 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.event-directory::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.event-directory::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 230, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.directory-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 80px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Navigation Section - Tighter */
.directory-nav {
  margin-bottom: 48px;
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.nav-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.12);
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.nav-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35 0%, #ffb347 50%, transparent 100%);
  max-width: 300px;
}

.nav-grid {
  display: flex;
  gap: 16px;
}

.nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 2px solid rgba(255, 107, 53, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.nav-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: #ff6b35;
  background: #ffffff;
  box-shadow: 0 12px 24px -10px rgba(255, 107, 53, 0.2);
}

.nav-item-number {
  font-size: 14px;
  font-weight: 800;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.12);
  padding: 4px 10px;
  border-radius: 30px;
  font-family: 'SF Mono', monospace;
}

.nav-item-content {
  flex: 1;
}

.nav-item-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.nav-item-description {
  font-size: 0.8125rem;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.4;
}

.nav-item-arrow {
  font-size: 24px;
  color: #ff6b35;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.nav-item:hover .nav-item-arrow {
  opacity: 1;
  transform: translateX(6px) scale(1.05);
}

/* Main Content - Tighter */
.directory-main {
  max-width: 780px;
}

.directory-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.title-accent {
  background: linear-gradient(135deg, #ff6b35 0%, #ffb347 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffb347);
  border-radius: 3px;
}

.directory-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 0 0 32px 0;
  max-width: 650px;
}

/* Buttons - Compact */
.action-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff3d00 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 16px rgba(255, 61, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(255, 61, 0, 0.4);
}

.btn-primary .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-secondary {
  background: rgba(255, 107, 53, 0.08);
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.btn-secondary:hover {
  background: rgba(255, 107, 53, 0.16);
  transform: translateY(-2px) scale(1.03);
  border-color: #ff3d00;
  color: #ff3d00;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

/* Footnote */
.info-footnote {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ff6b35;
  flex-wrap: wrap;
}

.footnote-divider {
  color: #ffb347;
  font-size: 8px;
}

/* Responsive - Full width at all sizes */
@media (max-width: 1200px) {
  .directory-container {
    padding: 0 48px;
  }
}

@media (max-width: 1024px) {
  .event-directory {
    padding: 48px 0;
  }
  
  .directory-title {
    font-size: 2.75rem;
  }
  
  .nav-grid {
    flex-direction: column;
    gap: 12px;
  }
  
  .nav-item {
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  .event-directory {
    padding: 40px 0;
  }
  
  .directory-container {
    padding: 0 24px;
  }
  
  .directory-nav {
    margin-bottom: 36px;
  }
  
  .nav-header {
    margin-bottom: 20px;
  }
  
  .nav-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .nav-divider {
    max-width: 120px;
  }
  
  .nav-item {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .nav-item-number {
    font-size: 12px;
    padding: 3px 8px;
  }
  
  .nav-item-title {
    font-size: 0.9375rem;
  }
  
  .nav-item-description {
    font-size: 0.6875rem;
  }
  
  .nav-item-arrow {
    font-size: 20px;
  }
  
  .directory-title {
    font-size: 2rem;
  }
  
  .title-accent::after {
    bottom: -4px;
    height: 2px;
  }
  
  .directory-description {
    font-size: 0.9375rem;
    margin-bottom: 28px;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    justify-content: center;
    padding: 11px 24px;
    font-size: 0.875rem;
  }
  
  .info-footnote {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.6875rem;
  }
  
  .footnote-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .directory-title {
    font-size: 1.75rem;
  }
  
  .nav-item-description {
    display: none;
  }
  
  .nav-item {
    padding: 12px 16px;
  }
}/* End custom CSS */