/* Custom Dreamy Styles */
html {
    scroll-behavior: smooth;
}

.page-template-page-dreamy-php #navbar {
    border-radius: 3rem;
}

.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(155, 169, 149, 0.1);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Global Buttons */
.btn-dreamy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.btn-dreamy-pink {
    background-color: #e9b3a6;
    color: white;
    padding: 1rem 2rem;
}

.btn-dreamy-pink:hover {
    background-color: #d8a093;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(233, 179, 166, 0.4);
}

.btn-dreamy-sage {
    background-color: #9ba995;
    color: white;
}

.btn-dreamy-sage:hover {
    background-color: #8a9884;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(155, 169, 149, 0.4);
}

.btn-dreamy-black {
    background-color: #000000;
    color: white;
}

.btn-dreamy-black:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

/* Custom Shape Animations */
@keyframes blob {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
}

.animate-blob {
    animation: blob 8s ease-in-out infinite;
}

.animate-delay-200 {
    animation-delay: 2s;
}

@keyframes spin-slow {
    100% {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

/* Dreamy services cards – scroll-triggered fade-in (layout offsets stay intact) */
.page-template-page-dreamy-php #services .glass-card.js-services-reveal {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.page-template-page-dreamy-php #services .glass-card.js-services-reveal.in-view {
    opacity: 1;
}
