/* Loading Screen Styles */
.loading-screen {
    background-color: var(--color-bg, #ffffff);
}

.loader-text {
    transform: translateY(100%);
    display: inline-block;
    color: var(--color-text, #1a1a1a);
    font-family: var(--font-heading, 'Playfair Display', serif);
}

/* Utility Classes */
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.overflow-hidden { overflow: hidden; }

/* Responsive Text Sizes */
.text-5xl { font-size: 3rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

@media (min-width: 768px) {
    .md\:text-7xl {
        font-size: 4.5rem;
    }
}
