/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Header Styles */
.header {
  border-bottom: 1px solid rgba(51, 65, 85, 0.2);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f59e0b;
}

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

.nav-link {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.accent-text {
  color: #f59e0b;
}

.primary-text {
  color: #1e293b;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #334155;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-title {
    font-size: 6rem;
  }
}

/* Button Styles */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #f59e0b;
  color: white;
}

.btn-primary:hover {
  background-color: rgba(245, 158, 11, 0.9);
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  color: #f59e0b;
  border: 2px solid #f59e0b;
}

.btn-outline:hover {
  background-color: #f59e0b;
  color: white;
}

.btn-card {
  background-color: #f59e0b;
  color: white;
  width: 100%;
  justify-content: center;
}

.btn-card:hover {
  background-color: rgba(245, 158, 11, 0.9);
}

/* Links Section */
.links-section {
  /*padding: 5rem 1rem;*/
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #334155;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styles */
.card {
  background-color: #ffffff;
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.card-icon {
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}

.card:hover .card-icon {
  background-color: rgba(245, 158, 11, 0.2);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.card-description {
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(51, 65, 85, 0.2);
  padding: 2rem 1rem;
  background-color: #ffffff;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.footer-text {
  color: #334155;
  margin-bottom: 1rem;
}

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

.footer-link {
  color: #334155;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f59e0b;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #334155;
}

/* Animations */
@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.icon {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
