@tailwind base;
@tailwind components;
@tailwind utilities;

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1f2937; /* gray-800 */
    background-color: #f9fafb; /* gray-50 */
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Instrument Serif', serif;
}

/* Custom Gradients & Accents */
.text-gradient {
    background: linear-gradient(to right, #0d9488, #be123c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Blobs */
.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #ccfbf1;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: #ffe4e6;
}

/* Animations */
@keyframes pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-animation {
    animation: pulse-soft 2s infinite;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* FAQ Icon Transition */
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-open .faq-icon {
    transform: rotate(180deg);
}
