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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111111;
    color: #F5F5F5;
}
h1, h2, h3, h4, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}
.font-logo {
    font-family: 'Goudy Bookletter 1911', serif;
}
.text-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust as needed */
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.text-brand-light{
Specificity: (0,1,0);
}


.text-brand-light {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.uppercase {
    text-transform: uppercase;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}