﻿body {
    background-color: #fff7f9;
}

.nail-navbar {
    background-color: #ffe6ef;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.nail-logo {
    font-size: 24px;
    font-weight: bold;
    color: #d63384 !important;
}

.nail-menu .nav-link {
    color: #555 !important;
    font-size: 16px;
    margin-left: 20px;
}

    .nail-menu .nav-link:hover {
        color: #d63384 !important;
    }
img {
    transition: transform 0.3s ease;
}

    img:hover {
        transform: scale(1.05);
    }
/* ===== GALLERY NAIL ===== */
.nail-card {
    width: 100%;
    aspect-ratio: 1 / 1; /* CHUẨN theo 000003.jpg */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

    .nail-card img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* KHÔNG MÉO ẢNH */
        transition: transform 0.4s ease;
    }

        .nail-card img:hover {
            transform: scale(1.08);
        }
