/* ============================================================
 * styles.css - 出店マルシェ カスタムスタイル
 * Extracted from sampleindex.html
 * ============================================================ */

/* ------------------------------------------------------------
 * Base Styles
 * ------------------------------------------------------------ */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #FAFAFA;
    line-height: 1.8;
}

/* ------------------------------------------------------------
 * Marushii Character Components (SVG-based for precision)
 * ------------------------------------------------------------ */
.marushii-wrapper {
    display: inline-block;
    transition: transform 0.3s ease;
}

.marushii-wrapper:hover {
    transform: translateY(-5px);
}

/* ------------------------------------------------------------
 * Animations
 * ------------------------------------------------------------ */

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

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Slide In Up Animation */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: slideInUp 0.8s ease-out forwards;
}

/* ------------------------------------------------------------
 * Section Dividers
 * ------------------------------------------------------------ */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
