/*
 * 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.
 */

body {
  background-color: #f8f6f2;
}

h1 {
  font-family: 'Lora', serif;
}

@media (max-width: 768px) {
  #mobile-menu-btn { display: block !important; }
  #mobile-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #ddd8cf;
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
  }
  #mobile-menu:not(.hidden) { display: flex; }
}

@media (min-width: 769px) {
  #mobile-menu-btn { display: none !important; }
  #mobile-menu { display: flex !important;
                 position: static;
                 flex-direction: row;
                 border: none;
                 padding: 0;
                 background: transparent; }
}
