/* CSS import syntax for Rails 7+ where Propshaft is used for asset management.
 '@import url("/assets/home-48d9b1a4.css");'  
 /Instead we used 'stylesheet_link_tag' in application.html.erb to include each custom stylesheet separately, which is a common practice in Rails applications to maintain modularity and clarity in asset management.
*/

       body { font-family: 'Segoe UI', system-ui, sans-serif; background: #a80909; color: #333; }
      .hero-bg { background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 50%, #1a3a2a 100%); }
      .gold-text { color: #c9973e; }
      .btn-primary { background: #c9973e; color: white; padding: 0.75rem 2rem; border-radius: 0.375rem; font-weight: 600; transition: background 0.2s; display: inline-block; }
      .btn-primary:hover { background: #a07830; }
      .btn-outline { border: 2px solid #c9973e; color: #c9973e; padding: 0.65rem 1.75rem; border-radius: 0.375rem; font-weight: 600; transition: all 0.2s; display: inline-block; }
      .btn-outline:hover { background: #c9973e; color: white; }
      .card { background: white; border-radius: 0.75rem; box-shadow: 0 2px 12px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
      .card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
      .nav-link { color: #e8e0d0; font-size: 0.9rem; letter-spacing: 0.05em; transition: color 0.2s; }
      .nav-link:hover { color: #c9973e; }
      .section-title { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; color: #1a3a2a; }
      .star { color: #f59e0b; }
