/* style.css */

@font-face {
    font-family: 'Arabic';
    src: url('./assets/fonts/BungeeSpice-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    position: relative;
    z-index: 1;
  }
  
  .background-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('./assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.3);
  }

  #logo{
    width: 280px;
  }
  
  header {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem 1rem;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
    font-size: 3rem;
    text-transform: uppercase;
    font-family: 'Arabic', 'Segoe UI', sans-serif;
  }
  
  header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  
  .btn {
    display: inline-block;
    background: #f39c12;
    color: #000;
    padding: 0.75rem 2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 1rem;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #fff;
    color: #000;
  }
  
  main {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .tokenomics, .roadmap {
    background: rgba(0, 0, 0, 0.6);
    margin-top: 2rem;
    border-radius: 12px;
    padding: 2rem;
  }
  
  .memes img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .gallery-item img{
    width: 280px;
    border-radius: 15px;
  }
  
  .gallery-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px; 
  }
  
  .gallery-item {
    width: calc(50% - 10px); 
  }
  
  .gallery-item.left {
    order: -1; 
  }
  
  .gallery-item.right {
    order: 1; 
  }


  footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
  }

  #big-img {
    width: 480px;
  }

  #small-img {
    width: 280px;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 600px) {
    header h1 {
      font-size: 2rem;
    }

    .gallery-flow {
        flex-direction: column;
        align-items: center;
      }

      .gallery-item {
        width: 100%; 
        order: initial; 
  }
  