/*
Theme Name: 7 Moods.
Description: 7 Days, 7 Aesthetics
Author: Gemini
Version: 1.2
*/

body { background-color: #FCFBFA; overflow-x: hidden; color: #4A4A4A; font-weight: 300; letter-spacing: 0.05em; }

/* --- Animations --- */
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes float-gentle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-float { animation: float-gentle 6s ease-in-out infinite; }

/* --- View Sections --- */
.view-section { display: block; opacity: 1; transition: opacity 0.4s ease; }

/* --- Glassmorphism --- */
.glass-card {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(138, 138, 138, 0.05); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover { box-shadow: 0 12px 40px 0 rgba(138, 138, 138, 0.1); transform: translateY(-2px); }

/* --- Buttons --- */
.btn-primary { background-color: #4A4A4A; color: #FFFFFF; transition: all 0.3s ease; }
.btn-primary:hover { background-color: #2A2A2A; transform: scale(1.02); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-download {
    padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-family: 'Jost', sans-serif; font-weight: 500;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}

/* --- Tags --- */
.tag {
    padding: 0.25rem 0.75rem; border-radius: 999px; background: #FAFAFA; border: 1px solid #EAEAEA;
    font-size: 0.7rem; color: #8A8A8A; transition: all 0.2s ease; cursor: pointer; display: inline-block;
    text-decoration: none !important;
}
.tag:hover { background: #4A4A4A; color: white !important; border-color: #4A4A4A; }

/* --- Backgrounds --- */
.watercolor-bg { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; z-index: -1; animation: float-gentle 10s ease-in-out infinite alternate; }
.blend-multiply { mix-blend-mode: multiply; }
.hide-scrollbar::-webkit-scrollbar { display: none; } .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- Pagination (一覧ページのページ送り) --- */
.pagination { margin-top: 4rem; width: 100%; }
.pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; align-items: center; }
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem;
    border-radius: 50%; border: 1px solid #EAEAEA; background: rgba(255,255,255,0.5);
    transition: all 0.3s; font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 500;
    text-decoration: none !important; color: #8A8A8A;
}
.pagination .page-numbers:hover:not(.current) { background: #FCFBFA; border-color: #4A4A4A; color: #4A4A4A; }
.pagination .page-numbers.current { background: #4A4A4A; color: #fff; border-color: #4A4A4A; }

/* --- Utility --- */
.day-panel { transition: opacity 0.5s ease; }
.hidden { display: none !important; }