@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/nats');

        * {
            box-sizing: border-box;
        }

/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
        
        body {
            background-color: black;
            color: white;
            font-family: Albert Sans, sans-serif;
        }
        
        .container {
            padding: 25px;
            max-width: 100%;
            
        }
        
        header {
            height: 20vh;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: -40px;
        }
        
        .logo-name {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .logo img{
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        
        .name {
            font-size: 20px;
            font-weight: bold;
            padding-left: 10px;
        }
        
        nav {
            display: flex;
            gap: 20px;
            margin-left: 50px;
            font-family: Nats, sans-serif;
            line-height: 1;
            
            
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
        
        nav a:hover {
            color: greenyellow;
        }
        
       
        
      .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out forwards;
    opacity: 0;
}



.gallery-item {
    border-radius: 15px;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: transform 0.3s ease-in-out; /* Added smooth transition */
}

.gallery-item:hover {
    transform: translateY(-10px); /* Move up 20px on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Optional: add a subtle shadow for depth */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease; /* Smooth filter transition */
}

.caption {
    font-size: 16px;
    color: white;
    font-weight: normal;
    margin-top: 7px;
    padding-left: 6px;
    line-height: 1;
    font-family: Nats, sans-serif;
}

        
footer {
            height: 2vh;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 20px;
            font-size: 13px; 
        }

 .footer-left, .footer-right {
            padding-bottom: 10px;
        }

        @media (min-width: 768px) {
            
            .gallery {
                grid-template-columns: repeat(3, 1fr);
                gap: 45px;
            }
            
            footer {
                padding: 20px;
            }
       
        }
