﻿
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-image: url(~/images/art-bg.jpeg) !important;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    overflow: hidden;
}

/* Main container */
.splash-container {
    position: relative;
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
/*    background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);*/
}

/* Grid pattern overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 0;
/*    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);*/
background-image: url(~/images/art-bg.jpeg);    
background-size: 20px 20px;
}

/* Animated background elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.bg-element-blue {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-element-purple {
    background-color: rgba(168, 85, 247, 0.1);
}

/* Main content */
.content {
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    animation: fadeIn 0.8s ease-out forwards;
}

.title-container {
    position: relative;
    animation: scaleIn 0.5s ease-out forwards;
}

.title-glow {
    position: absolute;
    inset: -4px;
    border-radius: 0.5rem;
    background: linear-gradient(to right, #2563eb, #9333ea, #2563eb);
    opacity: 0.75;
    filter: blur(8px);
}

.title {
    position: relative;
    background-color: #0f172a;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.divider {
    height: 4px;
    width: 0;
    border-radius: 9999px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    margin-top: 1.5rem;
    animation: expandWidth 0.8s 0.3s forwards;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 6rem;
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .title {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .title {
        font-size: 4.5rem;
    }
}
