/* Updated theme with American colors (red, white, blue) */

:root {
  --primary-color: #0052cc; /* Blue */
  --secondary-color: #e63946; /* Red */
  --accent-color: #ffffff; /* White */
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --automate-color: #0052cc; /* Changed from purple to blue for the Automate superhero */
}

/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navbar Styles */
.navbar-superhero {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  color: var(--accent-color) !important;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
}

.btn-trial {
  background-color: var(--secondary-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-trial:hover {
  background-color: #d32f2f;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section Styles */
.superhero-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--accent-color);
  overflow: hidden;
}

.superhero-title {
  font-family: 'Bangers', cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.superhero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

/* Hero backgrounds for each superhero */
.hero-inbound {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/inbound-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-outbound {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/outbound-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-automate {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/automate-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* Card Styles */
.superhero-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.superhero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.superhero-card .card-header {
  padding: 1.5rem;
  text-align: center;
}

.superhero-card .card-body {
  padding: 2rem;
}

.feature-list {
  padding-left: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.feature-list li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: -1.5rem;
  font-weight: bold;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2rem;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}

.timeline-content {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section .btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer-superhero {
  background-color: var(--dark-color);
  color: var(--accent-color);
  padding: 4rem 0 2rem;
}

.footer-superhero h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-superhero a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-superhero a:hover {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Testimonial Styles */
.testimonial-card {
  border-radius: 10px;
  overflow: hidden;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .superhero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .superhero-title {
    font-size: 2.5rem;
  }
  
  .timeline:before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Button styles for each superhero */
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.btn-outline-danger {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-danger:hover {
  background-color: var(--secondary-color);
  color: var(--accent-color);
}

.btn-outline-automate {
  color: var(--automate-color);
  border-color: var(--automate-color);
}

.btn-outline-automate:hover {
  background-color: var(--automate-color);
  color: var(--accent-color);
}

/* Automate (formerly Follow-up) specific styles */
.bg-automate {
  background-color: var(--automate-color) !important;
}

.border-automate {
  border-color: var(--automate-color) !important;
}
