/* Custom styles for Phoenix Capital UAE */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #111827;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Form focus states */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Details/summary styling */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    cursor: pointer;
}

/* Prevent text selection on logo/buttons where appropriate */
button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile optimizations */
@media (max-width: 640px) {
    body {
        font-size: 16px;
    }
}

/* Print styles */
@media print {
    header,
    footer,
    nav {
        display: none;
    }
}
