:root {
    --primary-pink: #ff8ba7;
    --secondary-pink: #ffc6c7;
    --dark-text: #4a4a4a;
    --light-bg: #fff6f8;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Utility Classes */
.text-pink {
    color: var(--primary-pink) !important;
}

.bg-light-pink {
    background-color: var(--light-bg) !important;
}

.section-padding {
    padding: 90px 0;
}

/* Buttons */
.btn-beauty {
    background-color: var(--primary-pink);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-beauty:hover {
    background-color: white;
    color: var(--primary-pink);
    box-shadow: 0 5px 15px rgba(255, 139, 167, 0.4);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-pink) !important;
    font-weight: bold;
}

.nav-link {
    color: #666 !important;
    margin: 0 10px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.hero-img-wrap {
    position: relative;
    z-index: 0;
}

.hero-img {
    border-radius: 200px 200px 20px 20px;
    box-shadow: 20px 20px 0 rgba(255, 139, 167, 0.2);
    width: 100%;
    object-fit: cover;
    height: 350px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    border: 1px solid #ffeeefff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 139, 167, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-pink);
    font-size: 2rem;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-pink);
    color: white;
}

/* Price List */
.price-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.price-name h5 {
    margin: 0;
    font-size: 1.1rem;
}

.price-name p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

.price-cost {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 139, 167, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .insta-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
    margin-bottom: 15px;
}

/* Contact/Booking */
.booking-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?q=80&w=1470&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.form-control,
.form-select {
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #eee;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 139, 167, 0.25);
    border-color: var(--primary-pink);
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding-top: 60px;
}

.footer-title {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    margin-right: 10px;
}

.social-circle:hover {
    background: var(--primary-pink);
}

/* Animation */
.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}