/* Custom styles for Okinawa Craft Yagino */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

/* Custom blue palette to match Okinawan ocean */
.bg-blue-50 {
    background-color: #f0f7ff;
}
.bg-blue-100 {
    background-color: #d9ecff;
}
.bg-blue-600 {
    background-color: #1e6fbf;
}
.bg-blue-700 {
    background-color: #1a5ea6;
}
.bg-blue-800 {
    background-color: #164d8c;
}
.text-blue-600 {
    color: #1e6fbf;
}
.text-blue-700 {
    color: #1a5ea6;
}
.text-blue-800 {
    color: #164d8c;
}

/* Animation for cheese cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hover\:animate-float:hover {
    animation: float 3s ease-in-out infinite;
}

/* Custom button styles */
.btn-primary {
    background-color: #1e6fbf;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a5ea6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}