/* Importar Cal Sans */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');

/* Colores basados en el logo */
body {
    background-color: #fffaf5;
    color: #333333;
}

.brand-gradient {
    background: #00a99d;
}

.brand-header {
    background: #00a99d;
    color: white;
}

.btn-brand {
    background-color: #00a99d;
    color: white;
}

.btn-brand:hover {
    background-color: #00a99d;
    color: white;
}

/* Navbar text styles with better contrast */
.navbar-brand {
    color: white !important;
    font-weight: bold !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
    font-size: 1.5rem !important;
}

.nav-link {
    color: white !important;
    font-weight: 500 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    transition: all 0.2s ease !important;
}

.nav-link:hover {
    transform: translateY(-2px) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

.card-header-brand {
    background: #00a99d;
    color: white;
}

.badge-brand {
    background: #00a99d;
    color: white;
}

.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}