/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  header {
    background-color: #111;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
  }
  
  .logo {
    font-family: 'Cinzel Decorative', cursive; /* Or any artistic font */
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 
      2px 2px 0 #222, 
      4px 4px 0 #000;
    transform: scale(1);
    transition: transform 0.4s ease, text-shadow 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.7));
  }
  
  /* On hover - give a growing 3D glow effect */
  .logo:hover {
    transform: scale(1.1);
    text-shadow: 
      2px 2px 5px #444,
      4px 4px 8px #000,
      0 0 15px #ffd700;
  }
  
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ffd700;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
  }
  
  /* Responsive Navigation */
  @media (max-width: 768px) {
    nav {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #111;
      width: 100%;
      display: none;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 2rem;
    }
  
    nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  
    .mobile-menu {
      display: flex;
    }
  
    header.active nav {
      display: flex;
    }
  }
  
  /* Footer */
  .footer {
    background: #fafafa;
    color: black;
    text-align: center;
    padding: 20px;
    width: 100%;
  }
  
  .footer a {
    color: #8f8523;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .footer p {
    font-size: 14px;
    margin-top: 10px;
    color: black;
  }