:root {
    --pink: #f6c1cc;
    --rose: #e8a1b0;
    --nude: #fdf6f0;
    --dark: #3a2f2f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--nude);
    color: var(--dark);
}

/* Cherry blossom overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('images/cherry-blossom-bg.png') top right no-repeat,
                url('images/cherry-blossom-bg.png') bottom left no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: white;
    position: sticky;
    top: 0;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--rose);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
}

/* HERO */
#hero {
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
        url('images/cherryblossoms.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

/* BUTTON */
.btn-primary {
    background: var(--rose);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* SECTIONS */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.pink-bg {
    background: var(--pink);
}

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

/* SERVICES */
.price-list {
    max-width: 400px;
    margin: auto;
}

.price-list div {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #aaa;
}

/* GALLERY – RESIZED IMAGES */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.4);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* AFTERCARE */
.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.advice-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
}

.advice-item i {
    font-size: 1.8rem;
    color: var(--rose);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #f6c1cc, #e8a1b0);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

/* MOBILE */
@media (max-width: 600px) {
    .gallery-grid img {
        height: 220px;
    }
}
