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

body {
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("https://source.unsplash.com/1600x900/?hair,salon,woman") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.45);
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
}

.hero p {
    margin: 15px 0;
}

/* BUTTONS */
.btn, .btn-outline, .whatsapp-btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
}

.btn {
    background: #e7b6c4;
    color: #fff;
}

.btn-outline {
    background: none;
    border: 1px solid #e7b6c4;
    color: #e7b6c4;
}

/* ABOUT */
.about {
    padding: 60px 20px;
    text-align: center;
}

/* INSTAGRAM */
.instagram {
    padding: 60px 20px;
    text-align: center;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 15px;
    margin: 30px 0;
}

.insta-grid img {
    width: 100%;
    border-radius: 12px;
}

/* MAP & REVIEWS */
.map-reviews {
    display: flex;
    flex-wrap: wrap;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.reviews {
    padding: 40px;
    flex: 1;
}

.review-card {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

/* APPOINTMENT */
.appointment {
    padding: 60px 20px;
    text-align: center;
    background: #fdf1f4;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #222;
    color: #fff;
}

