/* assets/css/custom.css */

/* Smooth fade transitions between slides */
.slide-transition {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slide-hidden {
    opacity: 0;
    transform: scale(0.98);
}

.slide-visible {
    opacity: 1;
    transform: scale(1);
}

/* Base styles for dynamically injected content to ensure they take full space */
.module-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Beautiful gradients and backgrounds that can be reused by modules */
.bg-gradient-brand {
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
