/* Home Page - Sim Owners Detail - Styles */

/* Base Styles & Utilities */
body {
    background-color: #f8f9ff;
    color: #0b1c30;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 209, 209, 0.05);
}

.glass-modal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Gradients */
.primary-gradient-text {
    background: linear-gradient(135deg, #006a6a 0%, #00B8B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary-gradient-bg {
    background: linear-gradient(135deg, #006a6a 0%, #00B8B8 100%);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #006a6a 0%, #00B8B8 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 209, 209, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #006a6a;
    color: #006a6a;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 106, 106, 0.05);
}

/* Inputs */
.ghost-input {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #c3c7c7;
    transition: all 0.2s ease;
}

.ghost-input:focus {
    outline: none;
    border-color: #006a6a;
    box-shadow: 0 0 0 3px rgba(0, 106, 106, 0.1);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Ambient Background Grid */
.bg-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(0, 106, 106, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 106, 106, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
