/* Custom Styles for Best Sushi and Teriyaki */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Clip diagonal for hero background */
.clip-diagonal {
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Floating animation for shapes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-shape:nth-child(3) {
    animation-delay: 2s;
    animation-duration: 5s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #4d8554;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #36683e;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid #4d8554;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clip-diagonal {
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .floating-shape {
        display: none;
    }
}

/* Print styles */
@media print {
    .floating-shape,
    .no-print {
        display: none;
    }
}
