/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #231f20;
    /* text-stone-800 */
    background-color: white;
    overflow-x: hidden;
}

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

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Solid/Filled Star Rating Icons */
.material-symbols-outlined.star-filled,
.animate-marquee .material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #f59e0b;
    font-size: 1.25rem;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Menu Transitions */
#mobile-menu-overlay {
    transition: opacity 0.3s ease;
}

#mobile-menu-drawer {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Component Classes */
.glass-nav {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #dccec3;
    /* stone-100 */
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

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

.text-gradient {
    background: linear-gradient(135deg, #231f20 0%, #231f20 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
    background: linear-gradient(to right, rgba(26, 24, 30, 0.8), rgba(26, 24, 30, 0.2));
}

.card-shadow {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}

.hero-overlay-dark {
    background: linear-gradient(to right, rgba(26, 22, 37, 0.9) 0%, rgba(26, 22, 37, 0.4) 100%);
}

details>summary::-webkit-details-marker {
    display: none;
}

.sharp-clip {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.mask-gradient {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Fonts */
.font-manrope {
    font-family: 'Manrope', sans-serif;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

/* Page Specific Overrides */

/* Why Pilates Page */
body.page-why-pilates {
    font-family: 'Inter', sans-serif;
}

body.page-why-pilates h1,
body.page-why-pilates h2,
body.page-why-pilates h3,
body.page-why-pilates .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Classes Page */
body.page-classes {
    font-family: 'Inter', sans-serif;
}

body.page-classes h1,
body.page-classes h2,
body.page-classes h3,
body.page-classes h4,
body.page-classes .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Contact Page */
.hero-tint::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(253, 242, 242, 0.8), rgba(253, 242, 242, 0.4));
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    background-color: #20BA5A;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}