
/* Custom styles that can't be achieved with Tailwind */
body {
    background-image: url('http://static.photos/textures/1200x630/15');
    background-attachment: fixed;
    background-size: cover;
    background-color: #f5f5dc;
    background-blend-mode: overlay;
    text-align: center;
}
/* Tatami texture overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(210, 180, 140, 0.1),
        rgba(210, 180, 140, 0.1) 1px,
        transparent 1px,
        transparent 20px
    );
    pointer-events: none;
    z-index: -1;
}

/* Custom font face for Japanese aesthetic */
@font-face {
    font-family: 'Japanese';
    src: local('MS Gothic'), local('Hiragino Sans');
}

/* Animation for subtle interactivity */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Custom scrollbar for the website */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background-color: #d97706;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .text-4xl {
        font-size: 2rem;
    }
    .text-xl {
        font-size: 1rem;
    }
}