@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #0f0f0f;
    color: white;
}
}

/* Font Utilities */
.font-sans {
    font-family: 'Inter', sans-serif !important;
}

/* Custom Utilities based on Figma gradients */
.bg-gradient-gold-button {
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
}
.bg-glass {
    background: rgba(0, 0, 0, 0.67);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    filter: blur(5px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (max-width: 767px) {
    #testimonial-slider .reveal {
        transform: none !important;
    }
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Page Load Animation */
@keyframes fadeInPage {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.page-load-fade {
    animation: fadeInPage 1.2s ease-out forwards;
}

/* Navbar Load Animation */
@keyframes navbarSlideDown {
    0% {
        opacity: 0;
        transform: translate(-50%, -40px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
.navbar-load-fade {
    animation: navbarSlideDown 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    opacity: 0;
}

/* Blog Dynamic Content Styling */
.blog-content h1, 
.blog-content h2, 
.blog-content h3, 
.blog-content h4, 
.blog-content h5, 
.blog-content h6 {
    color: white;
    line-height: 1.25;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-content h2 {
    font-size: 28px;
}

@media (min-width: 768px) {
    .blog-content h2 {
        font-size: 36px;
    }
}

.blog-content h3 {
    font-size: 24px;
}

@media (min-width: 768px) {
    .blog-content h3 {
        font-size: 28px;
    }
}

.blog-content p,
.blog-content ul,
.blog-content ol {
    margin-bottom: 1rem;
}

.blog-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.blog-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.blog-content a {
    color: #eed18d;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
}

.blog-content a:hover {
    opacity: 0.8;
}

.blog-content strong {
    color: white;
    font-weight: 600;
}
