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

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#verseContainer {
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}

#verseDisplayPrimaryLang,
#verseDisplaySecondaryLang,
#fetchedVerseTextDisplayPrimaryLang,
#fetchedVerseTextDisplaySecondaryLang {
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.6s ease-in-out;
  padding: 0 1rem;
}

#fetchedVerseTextDisplayPrimaryLang {
  margin-bottom: 2rem;
}

.primary_verse,
.secondary_verse {
  font-weight: bold;
}

.primary_verse {
  /* Use a consistent, impactful font for the reference */
  font-family: 'Raleway', sans-serif;
}

.primary_text {
  /* Larger font size for the main text, with good line height */
  font-family: 'Raleway', sans-serif;
  line-height: 1.4;
}

.secondary_verse {
  /* Smaller but still legible font for the secondary reference */
  font-family: 'Raleway', sans-serif;
}

.secondary_text {
  /* Good contrast and size for the secondary verse */
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Fading divider for a smooth visual separation */
.fading-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}
.dark .fading-divider {
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
}

/* Media queries for larger screens (projectors, desktops) */
@media (min-width: 1024px) {
  #verseContainer {
    max-width: 90%;
  }

  .primary_verse {
    font-size: 3.5rem; /* ~56px */
  }

  .primary_text {
    font-size: 5rem; /* ~80px */
    font-weight: 800;
  }

  .secondary_verse {
    font-size: 2.5rem; /* ~40px */
  }

  .secondary_text {
    font-size: 3.5rem; /* ~56px */
  }
}

/* Media queries for smaller screens (mobile) */
@media (max-width: 768px) {
  .primary_verse {
    font-size: 2.25rem; /* ~36px */
  }

  .primary_text {
    font-size: 3.5rem; /* ~56px */
  }

  .secondary_verse {
    font-size: 1.5rem; /* ~24px */
  }

  .secondary_text {
    font-size: 2.25rem; /* ~36px */
  }
}
/*
 * 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.
 *


 */
