body {
    cursor: none;
    font-family: Arial, sans-serif;
    padding-top: 20px;
    padding-bottom: 70px; /* Add padding to prevent content from being hidden by fixed navbar */
}

.cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 99, 71, 0.6);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-shadow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 99, 71, 0.2);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.japanese-text {
    font-size: 24px;
    margin-bottom: 5px;
}

.english-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.category-tabs {
    margin: 30px 0;
    justify-content: center;
}

.category-button {
    border: none;
    background-color: #e67e22;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-button:hover {
    background-color: #d35400;
}

.section-title {
    font-size: 24px;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e67e22;
}

.content-box {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: white;
}

.center-text {
    text-align: center;
}

.action-button {
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 5px;
    transition: all 0.3s;
}

.action-button:hover {
    background-color: #d35400;
}

.project-card {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 200px;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 15px;
    text-align: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.project-description {
    font-size: 14px;
}

.scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #e67e22 #f0f0f0;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #e67e22;
    border-radius: 10px;
}

.scroll-item {
    display: inline-block;
    width: 250px;
    margin-right: 15px;
}


.navbar {
    padding: 1.5rem 2rem;
}

        /* Slim hamburger button */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    transform: translateY(-8px);
}

.navbar-toggler-icon::after {
    transform: translateY(8px);
}

/* Offcanvas styles */
.offcanvas {
    width: 280px;
    background-color: #f8f9fa;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.offcanvas-body .nav-link {
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    transform: translateX(5px);
}

        
.nothing-yet {
    text-align: center;
    margin: 50px 0;
}

.nothing-yet img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.nothing-yet p {
    font-size: 16px;
    color: #555;
}

/* Bottom Navbar Styles */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
}

.bottom-text {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.donate-btn {
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    transition: all 0.3s;
    font-size: 14px;
    cursor: pointer;
}

.donate-btn:hover {
    background-color: #d35400;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-in {
    animation: slideInFromBottom 0.8s ease-out;
}