/* ----- CUSTOM STYLES ----- */
:root {
    --pink-soft: #fceaea;
    --pink-blush: #f5d6d4;
    --pink-rose: #e20485;
    --pink-dark: #e20485;
    --nude: #faf3f0;
    --charcoal: #2d2a2a;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.10);
    --border-radius: 20px;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

section{
    overflow: hidden;
}
.section-sub {
    color: #6a5e5e;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.btn-rose {
    background: var(--pink-rose);
    border: none;
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 6px 16px rgba(180, 100, 100, 0.2);
}

.btn-rose:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(180, 100, 100, 0.3);
}

.btn-outline-rose {
    background: transparent;
    border: 1.5px solid var(--pink-rose);
    color: var(--pink-rose);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline-rose:hover {
    background: var(--pink-rose);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 100, 100, 0.15);
}

.bg-soft-pink {
    background: var(--pink-soft);
}

.card-premium {
    border: none;
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.top-bar {
    background: var(--charcoal);
    color: #ddd;
    font-size: 0.85rem;
    padding: 6px 0;
}

.top-bar a {
    color: #eee;
    text-decoration: none;
    transition: 0.2s;
}

.top-bar a:hover {
    color: var(--pink-blush);
}

.social-icon {
    font-size: 1.1rem;
    margin-left: 12px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #e3d8d8d9;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgb(4 2 3) !important;
}

.nav-link {
    font-weight: 500;
    color: #fff !important;
    margin: 0 10px;
    transition: 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--pink-rose) !important;
}

.navbar .btn-rose {
    padding: 6px 22px;
}

/* hero carousel */
.hero-carousel .carousel-item {
    min-height: 92vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.hero-carousel .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 10, 0.4);
    backdrop-filter: brightness(0.85);
}

.hero-carousel .carousel-caption {
    z-index: 2;
    bottom: 25%;
    text-align: left;
    max-width: 650px;
    padding: 0 20px;
}

.hero-carousel .carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.hero-carousel .carousel-caption p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 20px 0 30px;
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        min-height: 75vh;
    }

    .hero-carousel .carousel-caption {
        bottom: 20%;
    }

    .hero-carousel .carousel-caption h1 {
        font-size: 2.8rem;
    }

    .section-heading {
        font-size: 2rem;
    }
}

/* about */
.about-list i {
    color: var(--pink-rose);
    margin-right: 12px;
    font-size: 1.3rem;
}

/* services */
.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* process */
.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--pink-blush);
    color: var(--charcoal);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

/* gallery */
.gallery-img {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-img:hover img {
    transform: scale(1.06);
}

/* testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: var(--shadow);
    margin: 10px 8px;
    height: 100%;
}

.testimonial-card .stars {
    color: #f5b342;
    letter-spacing: 3px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #f8d6d4, #f1c2c0);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cGF0aCBkPSJNMjAgM2wxMCAxMC02IDYtMTAtMTB6IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+') repeat;
}

/* footer */
.footer-dark {
    background: #1f1c1c;
    color: #d6cdcd;
    padding: 40px 0 20px;
}

.footer-dark a {
    color: #d6cdcd;
    text-decoration: none;
    transition: 0.2s;
}

.footer-dark a:hover {
    color: var(--pink-blush);
}

/* floating buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-btns .btn {
    border-radius: 60px;
    padding: 12px 22px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-wa:hover {
    background: #1da851;
    color: #fff;
}

.btn-call {
    background: var(--pink-rose);
    color: #fff;
}

.btn-call:hover {
    background: var(--pink-dark);
    color: #fff;
}

@media (max-width: 576px) {
    .floating-btns {
        bottom: 20px;
        right: 16px;
        gap: 12px;
    }

    .floating-btns .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* misc */
.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.rounded-4 {
    border-radius: 24px;
}

.shadow-soft {
    box-shadow: var(--shadow);
}

.bg-nude {
    background: var(--nude);
}