/* Exquisite Premium Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --text-primary: #f5f5f4; /* Stone 200 */
    --text-secondary: #a8a29e; /* Stone 400 */
    --accent: #fde68a; /* Amber 200 */
    --bg-dark: #0c0a09; /* Stone 950 */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(12, 10, 9, 1) 100%);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1c1917;
}

::-webkit-scrollbar-thumb {
    background: #44403c;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fde68a;
}

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

.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.animate-spin-slow {
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes letterSpacing {
    from { letter-spacing: -0.05em; opacity: 0; }
    to { letter-spacing: 0em; opacity: 1; }
}

#logo {
    animation: letterSpacing 1.5s ease-out;
}

/* Hide WordPress internal gallery blocks within the description to prevent duplication */

.prose figure.wp-block-gallery, 
.prose figure.wp-block-image {
    display: none !important;
}

/* Ensure the description text looks premium */
.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

