/* Custom Styles for Gourmet LP */

:root {
    --brand-pink: #f78da7;
    --soft-pink: #fff0f3;
    --pink-strong: #ff6b8e;
    --pink-light: #fff0f3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    background-color: #fffcfc;
    color: #4a4a4a;
}

/* Custom Selection Color */
::selection {
    background-color: var(--brand-pink);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-pink);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b8e;
}

/* Animations */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Utilities */
.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
}

img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.backdrop-blur-md {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
}

/* Card Hover Effect */
article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    /* カード */
article:hover {
  transform: translateY(-5px);
}

/* ボタン */
button:hover {
  transform: scale(1.05);
}
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
