/* Custom CSS for Mycrowave Me Splash Page */

:root {
    --golden-primary: #FFD700;
    --golden-secondary: #FFA500;
    --golden-dark: #DAA520;
    --golden-light: #FFEB3B;
    --gradient-bg: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
}

body {
    background: var(--gradient-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.splash-container {
    background: var(--gradient-bg);
    position: relative;
}

.splash-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFA500" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23DAA520" opacity="0.1"/><circle cx="10" cy="50" r="0.5" fill="%23FFEB3B" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.text-golden {
    color: var(--golden-dark) !important;
}

.mascot-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(218, 165, 32, 0.3));
    transition: transform 0.3s ease;
    background: transparent;
    /* Remove white background and make transparent */
    mix-blend-mode: multiply;
    /* Alternative: Use mix-blend-mode to blend with background */
}

.mascot-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-container {
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.btn-golden {
    background: linear-gradient(45deg, var(--golden-primary), var(--golden-secondary));
    border: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-golden:hover:not(:disabled) {
    background: linear-gradient(45deg, var(--golden-secondary), var(--golden-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    color: #333;
}

.btn-golden:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.progress {
    height: 32px; /* Much taller to fit microwave icon properly */
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    overflow: hidden;
}

.microwave-progress .progress-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 32px; /* Match the progress bar height */
}

.microwave-icon {
    font-size: 22px !important; /* Larger icon */
    margin-right: 10px;
    color: #333;
    vertical-align: middle;
}

.progress-bar-golden {
    background: linear-gradient(90deg, var(--golden-primary), var(--golden-secondary));
    position: relative;
    overflow: hidden;
}

.progress-bar-golden::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Ding notification styles */
.ding-notification {
    margin-top: 15px;
    z-index: 1000;
    pointer-events: none;
}

.ding-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--golden-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: dingEffect 1.2s ease-out;
    white-space: nowrap;
}

@keyframes dingEffect {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1.2);
    }
    40% {
        transform: scale(0.9);
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mascot-logo {
        max-width: 200px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .logo-container::after {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .mascot-logo {
        max-width: 150px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-golden {
        padding: 0.75rem 2rem;
    }
}