@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  .primary-button {
    @apply flex items-center justify-center min-w-[150px] h-[42px] bg-green rounded-[25px] text-charcoal text-[16px] font-bold font-open-sans

    hover:bg-darkgreen;
  }
  .primary-button-mobile {
    @apply flex items-center justify-center w-[180px] h-[42px] bg-green rounded-[25px] text-charcoal text-[18px] font-bold font-open-sans
    hover:bg-darkgreen;
  }

  .secondary-button {
    @apply flex items-center justify-center w-[150px] h-[42px] border-[2px] border-green rounded-[25px] text-charcoal text-[16px] font-bold font-open-sans

    hover:bg-green;
  }

  .secondary-button-white {
    @apply flex items-center justify-center w-[150px] h-[42px] border-[2px] border-white rounded-[25px] text-white text-[16px] font-normal font-open-sans

    hover:bg-white hover:text-teal;
  }

  .secondary-button-green {
    @apply flex items-center justify-center w-[150px] h-[42px] border-[4px] border-green rounded-[25px] text-white text-[16px] font-normal font-open-sans

    hover:bg-green hover:text-teal;
  }

  .secondary-button-small {
    @apply flex items-center justify-center w-[100px] h-[24px] border-[2px] border-white rounded-[25px] text-white text-[16px] font-normal font-open-sans

    hover:bg-white hover:text-teal;
  }

  .text-style-large-header {
    @apply text-[48px] leading-[60px] font-extrabold;
  }

  .text-style-medium-header {
    @apply text-[36px] leading-[42px] font-extrabold;
  }

  .text-style-small-header {
    @apply text-[23px] leading-[32px] font-extrabold;
  }
  .text-style-small-header-mobile{
    @apply text-[2.5em] leading-[42px] font-extrabold;
  }

  .text-style-small-header-mobile-bold{
    @apply text-[2em] leading-[42px] font-bold;
  }

  .text-style-small-header-mobile-semibold{
    @apply text-[1.5em] leading-[42px] font-semibold;
  }

  .text-style-small-header-mobile-medium{
    @apply text-[1.13em] leading-[42px] font-medium;
  }
  .text-style-small-bold-header {
    @apply text-[23px] leading-[32px] font-bold;
  }

  .text-style-small-semibold-header {
    @apply text-[23px] leading-[32px] font-semibold;
  }

  .text-style-small-normal-header {
    @apply text-[16px] leading-[20px] font-normal;
  }

  .text-style-paragraph {
    @apply text-[18px] leading-[22px] font-normal font-open-sans;
  }

  .text-style-subheading {
    @apply text-[16px] leading-[20px] text-persiangreen uppercase;
  }

  .text-style-nav-links {
    @apply text-[18px] leading-[22px] font-semibold text-teal;
  }

  .text-style-nav-sub-links {
    @apply text-[12px] leading-[16px] font-medium text-charcoal;
  }

  .text-style-form-header {
    @apply text-[14px] leading-[16px] font-semibold font-open-sans text-charcoal;
  }

  .accordion-content {
    @apply hidden;
  }

  .accordion-content.active {
    @apply block;
  }

  .accordion-header {
    @apply bg-white;
  }

  .accordion-header.active {
    @apply bg-[#85DDCE] rounded-t-[25px] rounded-b-[0px];
  }

  input, input[type="text"], textarea {
    @apply focus:border-[#C2C2C2] focus:outline-none focus:ring-0 focus:shadow-none;
  }

  input::placeholder {
    @apply text-[16px] text-charcoal font-normal;
  }

  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
