/* public/css/landing.css */
/* Landing page specific styles */

/* This file is intentionally minimal to avoid 404 errors */
/* All main styles are in app.css */

/* Additional landing page styles can be added here */
/* For now, this is a placeholder file */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color, #fbf8f1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--line, rgba(19,36,54,0.1));
    border-top: 4px solid var(--accent-color, #e5a531);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}