body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-image: url('extras/737.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
  }
  
  header {
    text-align: center;
    margin-top: 3rem;
  }

  .animated-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
    text-shadow: 0 0 20px #43c6ac, 0 0 40px #191654;
  }

  @keyframes glow {
    from { text-shadow: 0 0 10px #43c6ac, 0 0 20px #191654; }
    to { text-shadow: 0 0 30px #43c6ac, 0 0 60px #191654; }
  }
  
  .galerie-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #43c6ac;
    color: #191654;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
  }
  
  .galerie-button:hover {
    background: #191654;
    color: #fff;
  }
  
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .galerie {
    display: flex;
    gap: 20px; 
    padding: 20px; 
    flex-wrap: wrap; 
    justify-content: center;
  }

  .galerie img {
    width: 400px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .galerie img:hover {
    transform: scale(1.5);
    z-index: 1;
  }
  
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .lightbox.active {
    display: flex;
  }
  
  .lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .lightbox-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
  
  .lightbox .close {
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    font-family: sans-serif;
  }
  
  .back {
    text-align: center;
    margin-top: auto;
  }

 
 .menu-grid {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 60px;

  justify-content: center;
}

.menu-tile {
  height: 180px;

  background: rgba(25,22,84,0.7);
  backdrop-filter: blur(10px);

  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 50px;
  text-decoration: none;
  color: white;

  box-shadow: 0 8px 25px rgba(0,0,0,0.3);

  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.menu-tile span {
  font-size: 20px;
  margin-top: 10px;
  font-weight: bold;
}

.menu-tile:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(67,198,172,0.5);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}
