/* Brooklake-Style Hero Section - Enhanced Colors */
.hero {
  display: flex;
  min-height: 90vh;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  color: #333333;
  overflow: visible;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
    linear-gradient(45deg, transparent 0%, rgba(78, 205, 196, 0.02) 25%, transparent 50%, rgba(78, 205, 196, 0.02) 75%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 2rem 0;
  z-index: 2;
  position: relative;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Church Abbreviation - WELCOME TO CSM */
.church-abbreviation {
  margin-bottom: 1.5rem;
}

.church-abbreviation span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  text-align: center;
  opacity: 0.8;
}

/* Hero Title - FIND A WAY */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.title-line {
  display: block;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}

.title-line::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Hero Values */
.hero-values {
  margin-bottom: 3rem;
}

.value-item {
  margin-bottom: 0.8rem;
  position: relative;
}

.value-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}

.value-text::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  margin-bottom: 1.5rem;
}

.hero-subtitle p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Actions */
.hero-actions {
  margin-bottom: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 
    0 8px 25px rgba(78, 205, 196, 0.3),
    0 4px 12px rgba(78, 205, 196, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(78, 205, 196, 0.4),
    0 8px 20px rgba(78, 205, 196, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* Hero Info */
.hero-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
}

.service-times {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-day {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-time {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.2rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-text {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.3rem;
}

.location-desc {
  font-size: 0.9rem;
  color: #4a5568;
  font-style: italic;
}

/* Church Name - Welcome Text */
.church-name {
  margin-bottom: 0.5rem;
}

.church-name span {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 0.5rem 0 1rem 0;
  }
  
  .church-name span {
    font-size: 2.8rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-info {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .service-times {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .church-name span {
    font-size: 2.5rem;
  }
  
  .church-abbreviation span {
    font-size: 1.4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle p {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .service-times {
    gap: 1rem;
  }
  
  .service-item {
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .church-name span {
    font-size: 2rem;
  }
  
  .church-abbreviation span {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    padding: 0 1rem;
  }
  
  .hero-subtitle p {
    font-size: 1rem;
  }
  
  .service-times {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .service-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
  }
  
  .service-item:last-child {
    border-bottom: none;
  }
}