body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #faf7f5;
    color: #2b2b2b;
    text-align: center;
}

/* HERO */
.hero {
    padding: 90px 20px;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0 0;
    letter-spacing: 2px;
}

.designer {
    font-size: 18px;
    letter-spacing: 1px;
    color: #c2185b;
    margin-top: 6px;
}

/* CTA */
.cta {
    margin-top: 35px;
}

.btn {
    text-decoration: none;
    padding: 12px 30px;
    margin: 10px;
    display: inline-block;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary {
    background: #c2185b;
    color: #fff;
}

.primary:hover {
    opacity: 0.85;
}

.secondary {
    border: 1px solid #c2185b;
    color: #c2185b;
}

.secondary:hover {
    background: #c2185b;
    color: #fff;
}

/* SECTIONS */
.about,
.instagram,
.appointment,
.visit {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 25px;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: auto;
}

input,
textarea {
    padding: 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
}

textarea {
    resize: none;
    height: 100px;
}

button {
    background: #c2185b;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

/* MAP */
iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
}

/* FOOTER */
footer {
    padding: 30px;
    font-size: 13px;
    color: #777;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background-color: #c2185b; /* matches brand pink */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 56px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    opacity: 0.9;
}
