/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import "tailwindcss";

/* Gilroy Font Family */
@font-face {
  font-family: 'Gilroy';
  src: url("/assets/Gilroy-Regular-bebb0dfb.woff2") format('woff2'),
       url("/assets/Gilroy-Regular-bebb0dfb.woff") format('woff'),
       url("/assets/gilroy-regular-83b73268.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url("/assets/Gilroy-Medium-9679f36a.woff2") format('woff2'),
       url("/assets/Gilroy-Medium-9679f36a.woff") format('woff'),
       url("/assets/gilroy-medium-74ed3e43.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url("/assets/Gilroy-SemiBold-facd252a.woff2") format('woff2'),
       url("/assets/Gilroy-SemiBold-facd252a.woff") format('woff'),
       url("/assets/gilroy-semibold-92fe56e7.ttf") format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url("/assets/Gilroy-Bold-fc630a35.woff2") format('woff2'),
       url("/assets/Gilroy-Bold-fc630a35.woff") format('woff'),
       url("/assets/gilroy-bold-253f1e3f.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url("/assets/gilroy-light-3c2fe2b2.otf") format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url("/assets/gilroy-extrabold-6d5aff22.otf") format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Override Tailwind's default font family directly */
:root {
  --font-sans: 'Gilroy', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important;
}

/* Also set as universal fallback */
* {
  font-family: 'Gilroy', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif !important;
}

/* Simple Button Styles */
.btn-primary {
  background-color: #C3F53C;
  color: #000000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: #a8d632;
}

/* Tab Button Text Color Override */
.tab-button {
  color: #003B44 !important;
}
