html {
    scroll-behavior: smooth;
}

p{
font-style: italic;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: linear-gradient(135deg, #f5f7fa 25%, #c3cfe2 100%);
    transition: box-shadow 0.3s ease-in-out;
}

.navbar-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#mainNavbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: opacity 0.5s ease, top 0.5s ease;
}
#mainNavbar.hidden {
    opacity: 0;
    pointer-events: none; /* Prevent interactions when hidden */
    top: -100px; /* Move navbar out of view */
}
.hero-section {
    background: linear-gradient(rgba(244, 233, 233, 0), rgba(228, 219, 219, 0.1)), url(./images/heroBackground1.jpg) no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#otherServices, #manicureSection, #callToAction {
    background: linear-gradient(135deg, #f5f7fa 25%, #c3cfe2 100%);
    padding: 50px 0;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.sectionHeadingMain{
    font-family: "Pacifico", serif;
    color: rgb(168, 136, 199);
    font-size: 48px !important;
    font-weight: 100 !important;
}
.service-card-heading {
    font-family: "Tangerine", sans-serif !important;
    color: rgb(119, 82, 148) !important;
    font-weight: 700 !important;
    font-size: 36px;
}
.listOtherServices{
    font-family: "Tangerine", sans-serif !important;
    color: rgb(119, 82, 148) !important;
    font-weight: 700 !important;
    font-size: 32px;
}
.headingCallToAction{
    font-family: "Tangerine", sans-serif !important;
    color: rgb(119, 82, 148) !important;
    font-weight: 700 !important;
    font-size: 48px;
}
.manicureList{
    font-family: "Lora", serif;
    color: rgb(68, 68, 68);
    line-height: 1.6; 
}

.btn-fancy-outline {
    position: relative;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid white;
    border-radius: 50px;
    background: transparent;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}
.btn-fancy-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: all 0.5s ease;
    z-index: -1;
}
.btn-fancy-outline:hover::before {
    width: 100%;
}

.btn-fancy-outline:hover {
    color: #8b5fbf;
}
.btn-fancy {
    position: relative;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #8b5fbf, #6a4494);
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(106, 68, 148, 0.3);
    z-index: 1;
}

.btn-fancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #6a4494, #8b5fbf);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-fancy:hover::before {
    left: 0;
}

.btn-fancy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 68, 148, 0.4);
    color: white;
}

.btn-fancy:active {
    transform: translateY(-1px);
}
.btn-callAction{
    color: #8b5fbf !important
}
.service-card{
    background: linear-gradient(200deg, #f5f7fa 25%, #e7d5e7 100%);
}
.service-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}
.divContainer{
    background: linear-gradient(200deg, #f5f7fa 25%, #e7d5e7 100%);
}
.serviceImage:hover {
    filter: brightness(1.1);
    transition: filter 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .feature-card img {
        height: 150px;
    }
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.premium-service {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.premium-service:hover {
    transform: translateY(-3px);
}

.rounded-4 {
    border-radius: 1rem !important;
}

footer {
    background-color: #603F83FF;
    color: white;
    padding: 20px 0;
    text-align: center;
}



/* Sticky Social Bar */
.sticky-social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.sticky-social-bar ul {
    margin: 0;
    padding: 0;
}

.sticky-social-bar li {
    margin: 5px 0;
}

.sticky-social-bar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgb(25, 63, 63);
    color: white;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-social-bar .social-icon:hover {
    width: 55px;
    background-color: paleturquoise;
}

.sticky-social-bar .social-icon i {
    font-size: 20px;
}

.btn-call {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(170, 90, 90, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

