/* Shared Compliance Hub Styles */

:root {
  --corporate-blue: #3494ba;
  --teal-blue: #58b6c0;
  --teal-green: #75bda7;
  --steel-blue: #84acb6;
  --neutral-gray: #7a8c8e;
  --dark-bg: #0a0a0a;
  --light-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corporate-blue);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--corporate-blue);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--corporate-blue), var(--teal-blue));
  color: white;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Experience Level Selector */
.experience-selector {
  background: white;
  padding: 3rem 2rem;
  margin: -3rem auto 0;
  max-width: 1100px;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.experience-card {
  padding: 2rem;
  border: 2px solid #e5e5e5;
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.experience-card:hover {
  border-color: var(--corporate-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 148, 186, 0.2);
}

.experience-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.experience-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corporate-blue);
  margin-bottom: 0.5rem;
}

.experience-desc {
  color: #666;
  font-size: 0.95rem;
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
}

.section-light {
  background-color: #f8f9fa;
}

.section-dark {
  background-color: var(--dark-bg);
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Resource Grid */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--corporate-blue);
}

.section-dark .resource-card {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--teal-blue);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
  color: var(--corporate-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-dark .resource-card h3 {
  color: var(--teal-blue);
}

.resource-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.section-dark .resource-card p {
  color: rgba(255, 255, 255, 0.9);
}

.resource-list {
  list-style: none;
  padding-left: 0;
}

.resource-list li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.resource-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--corporate-blue);
  font-weight: bold;
}

.section-dark .resource-list li {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .resource-list li::before {
  color: var(--teal-blue);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--corporate-blue);
  color: white;
}

.btn-primary:hover {
  background: #2a7a9a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 148, 186, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--corporate-blue);
}

.btn-outline {
  background: transparent;
  color: var(--corporate-blue);
  border: 2px solid var(--corporate-blue);
}

.btn-outline:hover {
  background: var(--corporate-blue);
  color: white;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--corporate-blue);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--corporate-blue);
}

.feature-desc {
  color: #666;
  line-height: 1.6;
}

.section-dark .feature-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--corporate-blue), var(--teal-blue));
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Related Frameworks */
.related-frameworks {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.framework-tag {
  background: rgba(52, 148, 186, 0.1);
  color: var(--corporate-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.framework-tag:hover {
  background: var(--corporate-blue);
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
