@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #8c55fe17;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bf2e3e;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #EC5800;
}


::selection {
    background: #ffc107;
    color: #bf2e3e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cinzel", serif;
}

.logo {
    width: 100px;
}

.topbar {
    background: linear-gradient(45deg, #ffebd0, #fff2f2, #fff5e8, transparent);
}

.topbar b {
    font-family: "Cinzel", serif;
}

.navbar-nav .nav-link {
    font-weight: bold;
    color: #bf2e3e;
}

.section-one ul.product-plans {
    width: min(60rem, 90%);
    margin-inline: auto;
    display: flex;
    row-gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.section-one ul.product-plans li.product-plan:nth-child(1) {
    --accent-color: #fa0038
}

.section-one ul.product-plans li.product-plan:nth-child(2) {
    --accent-color: #164fa9
}

.section-one ul.product-plans li.product-plan:nth-child(3) {
    --accent-color: #1a9b8b
}

.section-one ul.product-plans li.product-plan {
    --overlap-size: 1.5rem;
    --border-radius: 5rem;
    width: min(15rem, 100%);
    margin-inline: var(--overlap-size);
    padding-block: 2rem;
    display: grid;
    grid-template-rows: max-content max-content 1fr max-content;
    gap: 0.5rem;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

.section-one ul.product-plans li.product-plan .title {
    font-size: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.section-one ul.product-plans li.product-plan .price {
    margin-right: calc(var(--overlap-size) * -1);
    justify-self: end;
    padding-block: 0.25rem;
    padding-inline: var(--overlap-size);
    background-color: var(--accent-color);
    color: white;
    position: relative;
}

.section-one ul.product-plans li.product-plan .price::after {
    content: "";
    position: absolute;
    height: var(--overlap-size);
    width: var(--overlap-size);
    right: 0;
    top: 100%;
    background-color: inherit;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.section-one ul.product-plans li.product-plan .btn {
    justify-self: start;
    margin-left: calc(var(--overlap-size) * -1);
    padding-block: 0.5rem;
    padding-inline: 2.5rem;

    border: none;
    font-family: inherit;
    color: white;
    font-size: 1.1rem;

    background-color: var(--accent-color);
    background-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.25) 0);
    background-size: 100% 200%;
    transition: background-position 100ms ease;

    position: relative;
    cursor: pointer;
}

.section-one ul.product-plans li.product-plan .btn:focus-visible {
    outline-offset: 5px;
    outline: 2px solid var(--accent-color);
    background-position: 0 100%;
}

.section-one ul.product-plans li.product-plan .btn:hover {
    background-position: 0 100%;
}

.section-one ul.product-plans li.product-plan .btn::after {
    content: "";
    position: absolute;
    height: var(--overlap-size);
    width: var(--overlap-size);
    left: 0;
    bottom: 100%;
    background-color: inherit;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.section-one ul.product-plans li.product-plan .btn:active {
    transform: scale(0.95);
}

.section-one ul.product-plans li.product-plan .btn:active::after {
    transform-origin: left bottom;
    transform: scale(0.9);
}

.section-one ul.product-plans li.product-plan .features {
    align-self: flex-start;
    list-style: none;
    padding-inline: 2rem;
    display: grid;
}

.section-one ul.product-plans li.product-plan .features li:not(:first-child) {
    border-top: 1px solid rgb(200, 200, 200);
}

.section-one ul.product-plans li.product-plan .features li {
    padding: 0.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1rem 1fr;
}

.section-one ul.product-plans li.product-plan .features li::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    display: grid;
    place-items: center;
}

.section-one ul.product-plans li.product-plan .features li.check::before {
    content: "\2713";
    color: green;
}

.section-one ul.product-plans li.product-plan .features li.cross::before {
    content: "\d7";
    color: red;
}

.section-one .credits {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.section-one .credits a {
    color: var(--color);
}

.section-one {


    /* background: linear-gradient(to right, #FD77A2, #FDCB4B, #FB33A1, #8C55FE); */
    /* background: linear-gradient(to right, #fd77a238, #fdcb4b1a, #fb33a136, #8c55fe30); */
    background: linear-gradient(to right, #fd77a212, #fdcb4b12, #fb33a112, #8c55fe17);

    /* background: linear-gradient(90deg, #fff2f2, #fff, #fff8e4); */
    padding-top: 100px;
    padding-bottom: 100px;
}

/* .section-one .card {
    border: none;
    background: #ffc107;
    box-shadow: 10px 10px;
    border-radius: 10px 40px 10px 40px;
    height: 300px;
} */
.section-one .card {
    border: none;
    background: linear-gradient(to right, #fd77a212, #fdcb4b12, #fb33a112, #8c55fe17);
    box-shadow: 10px 10px #fff;
    border-radius: 10px 40px 10px 40px;
    height: 300px;
}

.section-one .card p {
    font-size: 15px;
}

.section-one .card h4 {
    font-weight: bold;
    font-size: 20px;
}

.section-two {
    /* background: linear-gradient(90deg, #fff2f28a, #fffdfd, #fff8e5), url(../images/bg_img-1.webp); */
    background: linear-gradient(to right, #fd77a212, #fdcb4b12, #fb33a112, #8c55fe17);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section-two strong span img {
    width: 50px;
}

.section-two h1 {
    text-shadow: 3px -1px 1px;

}

/* 
.dividant {
    background: linear-gradient(#ffffff29), url(../images/dividing.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

} */

.section-three {
    /* background: linear-gradient(#fff, #fff), url(../images/bg-2.png); */
    background: linear-gradient(to right, #fd77a107, #fdcb4b09, #fb33a104, #8d55fe07);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-three .card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.section-three .card {
    border: none;
    box-shadow: 10px 9px 2px 2px #fff;
    /* background: linear-gradient(#EC5800, #ffc107, #EC5800); */
    background: linear-gradient(to right, #fd77a212, #fdcb4b12, #fb33a112, #8c55fe17);

}

.section-three .card h3 {
    font-weight: bolder;
    font-size: 20px;
    margin-top: 10px;
    color: #000;
}

.section-three .card p {
    color: #000;
    font-weight: 700;
}

.section-three .card .btn {
    color: #fef9f9;
    font-weight: 700;
}

.section-banner {
    background: linear-gradient(90deg, #f47e6712, #f5ae4200, #cd52261a);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-banner .appointment-form {
    background: #fff;
    padding: 10px;
}

.section-banner .appointment-form label {
    color: #EC5800;
    font-weight: bold;
}

.section-banner .appointment-form input {
    border: none;
    border-bottom: 2px solid #ffc107;
}

.section-banner .appointment-form #service {
    border: none;
    border-bottom: 2px solid #ffc107;
}

.section-banner .appointment-form textarea {
    border: none;
    border-bottom: 2px solid #ffc107;
}

footer {
    background: linear-gradient(90deg, #f47e6712, #f5ae4200, #cd52261a);
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    color: #ffe600;
    padding-left: 5px;
    transition: 1s;
}

.whatsaap-btn {
    position: fixed;
    bottom: 6px;
    left: 5px;
}

.whatsaap-btn i {
    background: #00a100;
    padding: 10px;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;

}

.whatsaap-btn i:hover {
    box-shadow: 3px 1px 0px 0px #1b1b1b;
}

.call-btn {
    position: fixed;
    bottom: 50px;
    left: 5px;
}

.call-btn i {
    background: rgb(31 127 255);
    padding: 10px;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;

}

.call-btn i:hover {
    box-shadow: 4px 1px 0px 0px #002659;
}

#button {
    display: inline-block;
    background-color: #ffc107;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 10px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


.animation {
    background: -webkit-linear-gradient(25deg, #ffc107, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid;
    animation: type 1.5s steps(90) 1.5s 1 normal both, cursor 1s step-end infinite;
    position: relative;
}

@keyframes type {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes cursor {
    50% {
        border-color: transparent;
    }
}


.top-banner {
    background: linear-gradient(to right, #fd77a212, #fdcb4b12, #fb33a112, #8c55fe17);
    padding-top: 100px;
    padding-bottom: 100px;
}

.top-banner a {
    color: #000;
    text-decoration: none;
}

/* Container for flowers */
#flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Allows users to click through the flowers */
    z-index: 9999;
    overflow: hidden;
}

/* Individual flower styling */
.flower {
    position: absolute;
    background-color: #ffb7c5;
    /* Petal pink */
    border-radius: 150% 0 150% 0;
    /* Petal shape */
    opacity: 0.8;
    animation: fall linear forwards;
}

/* The falling animation */
@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) translateX(100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* .flower {
    background-image: url(../images/flowers.png);
    background-size: contain;
    background-repeat: no-repeat;
} */