/* Custom styles to supplement Tailwind */

html {
    scroll-behavior: smooth;
}

/* custom transition for mobile menu */
#mobile-menu {
    -webkit-tap-highlight-color: transparent;
}

/* Animation for hero text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home .relative.z-10 {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Custom scrollbar for a modern look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Hide scrollbars but allow scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Full photo viewer: prevent selection + nicer UX */
#photo-viewer-overlay {
    -webkit-user-select: none;
    user-select: none;
}

/* Album grid tiles: keep consistent horizontal sizing */
.album-photo-aspect {
    width: 100%;
    /* same height behavior across images */
    aspect-ratio: 4 / 3;
}

.album-photo-tile {
    /* helps overflow-hidden work consistently */
    position: relative;
}



