/* Sky Pets Custom CSS Modifications */

/* Custom fonts styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar for premium desktop styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b8e40;
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-card-dark {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Soft Premium Shadows */
.shadow-premium {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05), 0 1px 1px 0 rgba(0, 0, 0, 0.02);
}

.shadow-premium-lg {
    box-shadow: 0 20px 40px -15px rgba(76, 175, 80, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.01);
}

.shadow-premium-blue {
    box-shadow: 0 20px 40px -15px rgba(33, 150, 243, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.01);
}

/* Micro Animations & Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

/* Interactive custom styles */
.service-icon-bg {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-bg {
    transform: scale(1.1) rotate(3deg);
}

.faq-details[open] summary svg {
    transform: rotate(180deg);
}

.faq-details summary::-webkit-details-marker {
    display: none;
}
