/* Modern centralized styles for Lingo Craft */

body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #dc3545;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #a71d2a;
  text-decoration: underline;
}

header.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: #212529;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #dc3545;
}

.main-footer {
  background-color: #ffffff;
  border-top: 1px solid #dee2e6;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.main-footer a {
  color: #6c757d;
}

.main-footer a:hover {
  color: #dc3545;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #a71d2a;
  border-color: #a71d2a;
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
  padding: 1.5rem;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #212529;
}

.hero-title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.25rem;
  color: #6c757d;
}

.cta-button {
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
}

.feature-card, .service-card, .testimonial {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover, .service-card:hover, .testimonial:hover {
  transform: translateY(-5px);
}

.footer-links .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
}

.footer-social a {
  color: inherit;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #dc3545;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
  .glass-card {
    padding: 1rem;
  }
}

/* Modern card styles extracted from index.html */
.modern-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(80,80,120,0.10), 0 1.5px 8px 0 rgba(80,80,120,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3e8ff;
  padding: 2.2rem 1.2rem 1.6rem 1.2rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.modern-card:hover {
  box-shadow: 0 8px 32px 0 rgba(80,80,120,0.18), 0 3px 16px 0 rgba(80,80,120,0.12);
  transform: translateY(-6px) scale(1.03);
  border-color: #b6c7ff;
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 60%, #e3e8ff 100%);
  box-shadow: 0 2px 8px 0 rgba(80,80,120,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.modern-card h4 {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  color: #1a1a2a;
}
.modern-card p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.07rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
}
.modern-card i {
  font-size: 2.1rem;
  margin-bottom: 0;
}
.modern-card .icon-circle i {
  margin-bottom: 0;
}
.modern-card .icon-circle {
  margin-bottom: 1.1rem;
}
@media (max-width: 767px) {
  .modern-card {
    padding: 1.25rem 0.8rem;
  }
  .icon-circle {
    width: 44px;
    height: 44px;
  }
  .modern-card h4 {
    font-size: 1.05rem;
  }
  .modern-card p {
    font-size: 0.98rem;
  }
}
