/* MinusWork™ Shared Styles - Unified styling for consistent look and feel */

/* ===== Typography ===== */
h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===== Button Styles ===== */
.cta-button {
  background-color: #f97316;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.secondary-button {
  background-color: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== Navigation Styles ===== */
.nav-link {
  position: relative;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f97316;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fdba74;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #f97316;
}

.nav-link.active::after {
  width: 100%;
}

/* ===== Section Styles ===== */
.section-container { 
  padding: 4rem 1rem;
  margin: 0 auto;
  max-width: 1200px;
}

/* ===== Card Styles ===== */
.card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-container {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .cta-button, .secondary-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}