@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&family=Noto+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

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

/* Remove Tailwind Forms default select arrow */
select {
    background-image: none !important;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #e7d5cf;
    border-radius: 20px;
}

/* Mobile gallery horizontal scroll */
.mobile-gallery-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
}

.mobile-gallery-scroll::-webkit-scrollbar {
    height: 4px;
}

.mobile-gallery-scroll::-webkit-scrollbar-track {
    background: #e7d5cf;
    border-radius: 10px;
}

.mobile-gallery-scroll::-webkit-scrollbar-thumb {
    background: #A3634C;
    border-radius: 10px;
}

.mobile-gallery-scroll>* {
    scroll-snap-align: center;
    flex-shrink: 0;
}

/* Gallery overlay hint for clickable images */
.gallery-image-hint {
    position: relative;
}

.gallery-image-hint::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231b110d' viewBox='0 0 24 24'%3E%3Cpath d='M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z'/%3E%3C/svg%3E");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0.9;
}