@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

html { scroll-behavior: smooth; }

@layer utilities {
    .bg-elevate-dark { background-color: #1A1A1D; } /* Dark Metallic */
    .bg-elevate-gray { background-color: #333333; }
    .bg-elevate-accent { background-color: #FFB800; } /* Safety Yellow */
    .bg-elevate-light { background-color: #F4F4F6; } /* Light Gray */
    .bg-elevate-white { background-color: #FFFFFF; }
    
    .text-elevate-dark { color: #1A1A1D; }
    .text-elevate-accent { color: #FFB800; }
    .text-elevate-muted { color: #888888; }
    
    .font-rajdhani { font-family: 'Rajdhani', sans-serif; }
    .font-roboto { font-family: 'Roboto', sans-serif; }
}

.elevate-btn {
    @apply inline-flex items-center justify-center px-8 py-3 bg-[#FFB800] text-[#1A1A1D] font-rajdhani font-bold tracking-widest uppercase rounded-sm hover:bg-[#E6A600] transition-colors duration-300 relative overflow-hidden;
}

.elevate-btn::after {
    content: '';
    @apply absolute top-0 left-[-100%] w-full h-full bg-white/20 skew-x-[-45deg] transition-all duration-500;
}

.elevate-btn:hover::after {
    @apply left-[100%];
}

.elevate-btn-outline {
    @apply inline-flex items-center justify-center px-8 py-3 border-2 border-[#FFB800] text-[#FFB800] font-rajdhani font-bold tracking-widest uppercase rounded-sm hover:bg-[#FFB800] hover:text-[#1A1A1D] transition-colors duration-300;
}

.elevate-card {
    @apply bg-white p-8 border-l-4 border-transparent hover:border-[#FFB800] shadow-md hover:shadow-xl transition-all duration-300 relative overflow-hidden;
}

/* Metallic Texture Overlay */
.texture-metallic {
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 2px,
        transparent 2px,
        transparent 4px
    );
}

/* Moving Elevator Animation */
.elevator-shaft {
    position: relative;
    width: 60px;
    height: 100%;
    border-left: 2px dashed rgba(255,255,255,0.1);
    border-right: 2px dashed rgba(255,255,255,0.1);
}

.elevator-car {
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: #FFB800;
    left: 10px;
    bottom: 0;
    animation: moveElevator 10s ease-in-out infinite alternate;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

.elevator-car::after {
    content: '';
    position: absolute;
    top: -100vh;
    left: 18px;
    width: 4px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes moveElevator {
    0% { bottom: 0; }
    20% { bottom: 30%; }
    40% { bottom: 30%; }
    60% { bottom: 70%; }
    80% { bottom: 70%; }
    100% { bottom: calc(100% - 60px); }
}
