/* ThePipCenter - Custom Styles */
/* Most styling is handled by Tailwind CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus {
    outline: 2px solid #f9cc00;
    outline-offset: 2px;
}

/* Custom animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.broker-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Hover effect for cards */
.broker-card > div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.broker-card > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gradient text for logo accent */
.text-gradient {
    background: linear-gradient(135deg, #f9cc00 0%, #f7c000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .broker-card > div {
        padding: 1rem;
    }
}

/* Print styles */
@media print {
    .sticky, footer, button {
        display: none !important;
    }
}