/* =========================================================
   MENU STYLE: The Dark Portal
   ========================================================= */

/* This style only exists when menu.css is loaded */
main {
    background-color: #0f172a; /* Deep Navy */
    color: var(--parchment);
  }
  
  .menu-hero {
    border: 2px solid var(--accent-gold);
    margin-top: 20px;
    margin-bottom: 50px;
    background-image: url('https://lh3.googleusercontent.com/u/0/d/1sTp_SWwU7IACMxCiwHFD5WsMVsUV9Qhx'); 
    background-size: cover;
    background-position: center;
    border-radius: 4px;
  }
  
  .hero-overlay {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); 
  }
  
  .hero-overlay h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  }
  
  .lore-content {
    text-align: center;
    padding: 40px 0;
  }
  
  .lore-content h3 {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  
  .lore-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--parchment);
    max-width: 650px;
    margin: 0 auto 40px auto;
  }
  
  .gilded-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 40px auto;
    width: 70%;
  }