/* CTAK Standalone Vastu Design Stylesheet */

body {
    background-color: #030712;
    background-image: radial-gradient(circle at 50% 50%, #0e1424 0%, #030712 100%);
    font-family: 'Inter', sans-serif;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Cards */
.card {
    background: rgba(13, 20, 38, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px border rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    border-color: rgba(245, 158, 11, 0.15);
}

/* Input Styling */
.input-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    color: #e2e8f0;
    outline: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-field:focus {
    border-color: #f59e0b;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

select.input-field option {
    background: #0f172a;
    color: #f1f5f9;
}

/* Chips for search suggestions */
.chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.chip:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* Custom Scrollbar */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Animations */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

/* Print Layout Optimization */
@media print {
    body {
        background: white;
        color: black;
    }
    header, section:not(:last-child), button, .chip {
        display: none !important;
    }
    #tab-content-blueprint {
        display: block !important;
        width: 100%;
        height: 100%;
    }
    #blueprint-canvas {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    #blueprint-canvas svg {
        width: 100vw !important;
        height: 100vh !important;
    }
}
