/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("./assets/banner2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
  }
  .bodyi{
    background: url('./assets/banner.gif') no-repeat center center/cover;
  }
  a{
    text-decoration: none; 
  }
  .top-anime-section{
    text-align: center;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #333; */
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav .logo {
    color: #ff6f61;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  nav .nav-links a:hover {
    padding: 10px;
    background-color: orangered;
    border-radius: 10px;
  }
  
  /* Home Section */
  .home-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .home-section h1 {
    font-size: 4rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  .home-section p {
    font-size: 1.5rem;
    animation: fadeIn 3s ease-in-out;
  }
  
  .home-section .btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .home-section .btn:hover {
    background-color: #e65a50;
  }
  
  /* Anime Grid */
  .anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .anime-card {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .anime-card:hover {
    transform: translateY(-10px);
  }
  .anime-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .anime-card h3 {
    padding: 1rem;
    font-size: 1.25rem;
    text-align: center;
  }
  
  .anime-card p {
    padding: 0 1rem 1rem;
    text-align: center;
    color: #ccc;
  }
  .logo-name{
    display: flex;
    width: 15%;
    justify-content: space-around;
  }
  .imglogo{
    width:25%;
    border-radius: 50%;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav .nav-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .home-section h1 {
      font-size: 2.5rem;
    }
  
    .home-section p {
      font-size: 1rem;
    }
  
    .anime-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }