@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,500;1,300&family=Noto+Sans+JP:wght@200;400;700&display=swap');

:root {
    --salon-bg: #ffffff;
    --salon-accent: #d4bda4;
    --salon-text: #2d2d2d;
    --salon-muted: #f7f7f7;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--salon-bg);
    color: var(--salon-text);
    line-height: 1.8;
    overflow-x: hidden;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
      url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&q=80&w=2000')
      center/cover no-repeat fixed !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--salon-accent);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline {
    border: 1px solid var(--salon-text);
    padding: 12px 40px;
    transition: all 0.3s;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.btn-outline:hover {
    background-color: var(--salon-text);
    color: white;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.floating-reservation {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

/* =========================
   スマホ向け調整 (画面幅 768px 以下)
========================= */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 1.5rem !important;
    }

    .hero h2 {
        font-size: 2rem;
        letter-spacing: 0.2em;
        line-height: 1.4;
    }

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    #about .grid {
        gap: 3rem;
    }

    .menu-item {
        padding: 1rem 0;
    }

    .menu-item h4 {
        font-size: 0.9rem;
    }

    .menu-item span {
        font-size: 1rem;
    }

    /* ※誤字修正：grid-template-cols → grid-template-columns */
    #style .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    #style img {
        height: 250px;
    }

    footer .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    footer .flex {
        justify-content: center;
        gap: 2rem;
    }

    .floating-reservation {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .floating-reservation button {
        width: 100%;
        padding: 1rem;
        font-size: 0.7rem;
    }
}

/* =========================
   追加：表示時にほわっとズーム
========================= */
.lumina-zoom {
    transform: scale(1.05);
    opacity: 0;
    animation: luminaZoom 1.6s ease-out forwards;
}

@keyframes luminaZoom {
    to {
        transform: scale(1);
        opacity: 1;
    }
}
