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

body {
  font-family: "Roboto", "Roboto Fallback";
  background-color: #ffffff;
  color: #171717;
  line-height: 1.5;
}

:root {
  --primary: #a62c00;
  --primary-light: #fff0e6;
  --secondary: #7b5d42;
  --secondary-light: #f1ebe7;
  --muted: #f5f5f5;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --background: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
}

.bg-gradient-to-b {
  background: linear-gradient(
    to bottom,
    rgba(166, 44, 0, 0.1) 0%,
    #ffffff 100%
  );
}

.bg-muted\/30 {
  background-color: color-mix(
    in oklab,
    lab(96.52% -0.0000298023 0.0000119209) 30%,
    transparent
  );
}
.bg-white {
  background-color: #ffffff;
}
.bg-secondary\/10 {
  background-color: rgba(123, 93, 66, 0.1);
}
.bg-primary\/10 {
  background-color: rgba(166, 44, 0, 0.1);
} /* updated */
.bg-neutral-100 {
  background-color: var(--neutral-100);
}

.border {
  border: 1px solid var(--border);
}
.border-border {
  border-color: var(--border);
}
.border-secondary\/20 {
  border-color: rgba(123, 93, 66, 0.2);
}
.border-primary\/20 {
  border-color: rgba(166, 44, 0, 0.2);
} /* updated */

.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-muted-foreground {
  color: var(--muted-foreground);
}
.text-white {
  color: #ffffff;
}

/* layout & spacing */
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.p-6 {
  padding: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mt-8 {
  margin-top: 2rem;
}

.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-none {
  max-width: none;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.inline-flex {
  display: inline-flex;
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-full {
  border-radius: 9999px;
}

.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.prose p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
}
.hover\:bg-primary\/90:hover {
  background-color: rgba(166, 44, 0, 0.9);
}
.hover\:bg-muted:hover {
  background-color: lab(96.52% -.0000298023 .0000119209);
}
.hover\:bg-secondary\/20:hover {
  background-color: rgba(123, 93, 66, 0.2);
}
.hover\:bg-primary\/20:hover {
  background-color: rgba(166, 44, 0, 0.2);
}
.hover\:bg-neutral-200:hover {
  background-color: var(--neutral-200);
}
.hover\:text-primary:hover {
  color: var(--primary);
}
.hover\:text-secondary:hover {
  color: var(--secondary);
}
.transition-colors {
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.group:hover .group-hover\:text-primary {
  color: var(--primary);
}
.group:hover .group-hover\:text-secondary {
  color: var(--secondary);
}

svg.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}

.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.w-12 {
  width: 3rem;
}
.h-12 {
  height: 3rem;
}

.about_sec_btn {
  display: flex;
  flex-direction: row;
}

/* .about_sec_btn a:hover {
  color: lab(2.75381 0 0) !important;
} */

.about_box_sec {
  background-color: color-mix(
    in oklab,
    lab(53.3685% -54.3478 21.2344) 10%,
    transparent
  );
}

.about_box_sec:hover {
  background-color: color-mix(
    in oklab,
    lab(53.3685% -54.3478 21.2344) 20%,
    transparent
  );
}

.about_community {
  background-color: color-mix(
    in oklab,
    lab(53.3685% -54.3478 21.2344) 10%,
    transparent
  );
}

@media (max-width: 528px) {
  .about_sec_btn {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
