/* Tomorrow House (내일의 집) Custom Styles */

:root {
    --brand-color: #35C5F0;
    --brand-dark: #0288d1;
    --text-main: #2F3438;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    color: var(--text-main);
    background-color: #F7F8FA;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scaleUp {
    animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Photo Tag Pin Tooltip */
.tag-pin-btn {
    box-shadow: 0 4px 14px rgba(53, 197, 240, 0.4);
    cursor: pointer;
    user-select: none;
}

.tag-pin-btn:hover {
    box-shadow: 0 6px 20px rgba(53, 197, 240, 0.6);
}

.tag-tooltip {
    pointer-events: auto;
}

.tag-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* Toast styling */
.toast-msg {
    animation: fadeIn 0.3s ease-out;
}
