/* Component-specific styles */

/* Card Components */
.card {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--main-shadow);
  overflow: hidden;
}

.card-content {
  padding: 48px;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-inter);
  font-weight: 900;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--red);
  color: var(--white);
  box-shadow: var(--main-shadow);
}

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

.btn-outline {
  background: transparent;
  border: 0.5px solid var(--gray-text);
  color: var(--gray-text);
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Navigation Components */
.nav-link {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 140%;
  cursor: pointer;
  transition: text-decoration 0.3s;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Icon Components */
.icon {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* Layout Components */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  width: 100%;
  padding: 64px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  text-align: center;
}

/* Grid Components */
.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

/* Responsive Utilities */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:text-left {
    text-align: left;
  }

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